Changeset 48

Show
Ignore:
Timestamp:
02/12/07 15:34:52 (6 years ago)
Author:
ged
Message:

documented cleanup_all

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/elixir/__init__.py

    r47 r48  
    3535          sqlalchemy.types.__all__ 
    3636 
    37 __pudge_all__ = ['create_all', 'drop_all', 'metadata', 'objectstore',  
    38                  'delay_setup', 'setup_all'] 
     37__pudge_all__ = ['create_all', 'drop_all', 'setup_all', 'cleanup_all', 
     38                 'metadata', 'objectstore', 'delay_setup'] 
    3939 
    4040# connect 
     
    8383 
    8484def cleanup_all(): 
     85    '''Drop table and clear mapper for all entities, and clear all metadatas. 
     86    ''' 
    8587    drop_all() 
    8688    for md in metadatas: