diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-13 13:19:36 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-13 13:19:36 -0500 |
commit | af4285e6adf2a052ce985f9d3d97cc89778fca96 (patch) | |
tree | 56364c556828d5c7e103e57a82ef82e41d603fb9 /lib/sqlalchemy/test/util.py | |
parent | 5400ea2c1e2c605843255f5eb15b5ce1d8fba025 (diff) | |
download | sqlalchemy-af4285e6adf2a052ce985f9d3d97cc89778fca96.tar.gz |
- move inline "import" statements to use new "util.importlater()" construct. cuts
down on clutter, timeit says there's a teeny performance gain, at least where
the access is compared against attr.subattr. these aren't super-critical
calls anyway
- slight inlining in _class_to_mapper
Diffstat (limited to 'lib/sqlalchemy/test/util.py')
-rw-r--r-- | lib/sqlalchemy/test/util.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/sqlalchemy/test/util.py b/lib/sqlalchemy/test/util.py index ff2c3d7b7..f2b6b49ea 100644 --- a/lib/sqlalchemy/test/util.py +++ b/lib/sqlalchemy/test/util.py @@ -22,8 +22,6 @@ else: def lazy_gc(): pass - - def picklers(): picklers = set() # Py2K |