mappers are used which would result in un-initialized
attributes.
from a base class to a joined-table subclass would
not configure correctly.
+ - Fixed obscure mapper compilation issue when inheriting
+ mappers are used which would result in un-initialized
+ attributes.
+
- Fixed documentation for session weak_identity_map -
the default value is True, indicating a weak
referencing map in use.
for key, prop in l:
self._log("initialize prop " + key)
- if not prop._compile_started:
+ if prop.parent is self and not prop._compile_started:
prop.init()
if prop._compile_finished: