diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-05-28 05:52:52 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-05-28 05:52:52 +0000 |
| commit | 2fef9275043b28af6d4f26223993f60717ed33c7 (patch) | |
| tree | d5322b8afe892f0244f4cad35c4a00f0d4abd1b4 /lib/sqlalchemy/mods | |
| parent | 74eedacecab991b153033e4aebe8c8110492c8f3 (diff) | |
| download | sqlalchemy-2fef9275043b28af6d4f26223993f60717ed33c7.tar.gz | |
selectresults docs
Diffstat (limited to 'lib/sqlalchemy/mods')
| -rw-r--r-- | lib/sqlalchemy/mods/threadlocal.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/mods/threadlocal.py b/lib/sqlalchemy/mods/threadlocal.py index 6f122a409..f96bb5649 100644 --- a/lib/sqlalchemy/mods/threadlocal.py +++ b/lib/sqlalchemy/mods/threadlocal.py @@ -20,6 +20,8 @@ Note: this mod creates a global, thread-local session context named sqlalchemy.o while this mod is installed will reference this global context when creating new mapped object instances. """ +__all__ = ['Objectstore', 'assign_mapper'] + class Objectstore(SessionContext): def __getattr__(self, key): return getattr(self.current, key) |
