]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
(no commit message)
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 20 Sep 2005 06:42:10 +0000 (06:42 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 20 Sep 2005 06:42:10 +0000 (06:42 +0000)
lib/sqlalchemy/mapper.py

index 12cbfc1e0c94ebd10c7f990dc698fc71c6129468..aad0c32d90a935147104be9c740b8058b5371e84 100644 (file)
@@ -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