From: Mike Bayer Date: Tue, 20 Sep 2005 06:42:10 +0000 (+0000) Subject: (no commit message) X-Git-Tag: rel_0_1_0~661 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78bc9be2071c7f0a8900a9fe3161bcef16221c80;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git --- diff --git a/lib/sqlalchemy/mapper.py b/lib/sqlalchemy/mapper.py index 12cbfc1e0c..aad0c32d90 100644 --- a/lib/sqlalchemy/mapper.py +++ b/lib/sqlalchemy/mapper.py @@ -182,6 +182,7 @@ class Mapper(object): if not found. The *ident argument is a list of primary keys in the order of the table def's primary keys.""" key = objectstore.get_id_key(ident, self.class_, self.table) + print "key: " + repr(key) + " ident: " + repr(ident) try: return objectstore.uow()._get(key) except KeyError: @@ -631,7 +632,6 @@ class PropertyLoader(MapperProperty): self.primaryjoin.accept_visitor(setter) uowcommit.register_deleted_list(childlist) if len(updates): - print "DELETION UPDATES?!" parameters = {} for bind in self.lazybinds.values(): parameters[bind.shortname] = None