Changeset 510 for elixir/trunk/elixir
- Timestamp:
- 11/09/09 12:56:31 (3 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/elixir/entity.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/entity.py
r509 r510 8 8 import warnings 9 9 10 from copy import copy10 from copy import deepcopy 11 11 12 12 import sqlalchemy … … 718 718 base_props = getmembers(entity_base, 719 719 lambda a: isinstance(a, Property)) 720 base_props = [(name, copy(attr)) for name, attr in base_props]720 base_props = [(name, deepcopy(attr)) for name, attr in base_props] 721 721 else: 722 722 base_props = []
