summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2009-08-14 17:02:56 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2009-08-14 17:02:56 +0000
commitda9c1405d6f62a953e6274db75cfdf30ae6eb379 (patch)
tree06897a8a78b1e3851cfb8d65f4613d6a2afa7f7e /lib/sqlalchemy
parentbc8217cd76c73d5cbc8cd21a5e45c9e38037e5a4 (diff)
downloadsqlalchemy-da9c1405d6f62a953e6274db75cfdf30ae6eb379.tar.gz
dont see the need to re-call post_configure inside a reentrant loop. since we're
in 0.6 let's just simplify.
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r--lib/sqlalchemy/orm/mapper.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/sqlalchemy/orm/mapper.py b/lib/sqlalchemy/orm/mapper.py
index dcf33d07e..f4cc72cef 100644
--- a/lib/sqlalchemy/orm/mapper.py
+++ b/lib/sqlalchemy/orm/mapper.py
@@ -636,10 +636,6 @@ class Mapper(object):
try:
global _already_compiling
if _already_compiling:
- # re-entrance to compile() occurs rarely, when a class-mapped construct is
- # used within a ForeignKey, something that is possible
- # when using the declarative layer
- self._post_configure_properties()
return
_already_compiling = True
try: