Changeset 263 for elixir/trunk/elixir/__init__.py
- Timestamp:
- 11/03/07 17:17:44 (6 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/elixir/__init__.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/__init__.py
r254 r263 16 16 ''' 17 17 18 try: 19 set 20 except NameError: 21 from sets import Set as set 22 18 23 import sqlalchemy 19 20 24 from sqlalchemy.types import * 21 25 … … 26 30 from elixir.fields import has_field, with_fields, Field 27 31 from elixir.relationships import belongs_to, has_one, has_many, \ 28 has_and_belongs_to_many 29 from elixir.relationships importManyToOne, OneToOne, OneToMany, ManyToMany32 has_and_belongs_to_many, \ 33 ManyToOne, OneToOne, OneToMany, ManyToMany 30 34 from elixir.properties import has_property, GenericProperty, ColumnProperty 31 35 from elixir.statements import Statement 32 36 33 try:34 set35 except NameError:36 from sets import Set as set37 37 38 __version__ = '0.4. 0'38 __version__ = '0.4.1' 39 39 40 40 __all__ = ['Entity', 'EntityMeta', … … 51 51 52 52 __doc_all__ = ['create_all', 'drop_all', 53 'setup_all', 'cleanup_all',54 'metadata', 'session']53 'setup_all', 'cleanup_all', 54 'metadata', 'session'] 55 55 56 56
