diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-11-18 02:18:52 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-11-18 02:18:52 +0000 |
| commit | d86eb9ba4fc8c86f18fd242fa63d4cbd1992bbc9 (patch) | |
| tree | 2b9eddac358709b0a4f8b3293e68a971dcfb15fc /lib/sqlalchemy | |
| parent | be50f4f13a1744223107b421f87f8b7e7be07ee1 (diff) | |
| download | sqlalchemy-d86eb9ba4fc8c86f18fd242fa63d4cbd1992bbc9.tar.gz | |
oops, print statements...
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/orm/query.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/sqlalchemy/orm/query.py b/lib/sqlalchemy/orm/query.py index b828750d4..47a702269 100644 --- a/lib/sqlalchemy/orm/query.py +++ b/lib/sqlalchemy/orm/query.py @@ -105,14 +105,11 @@ class Query(object): key column values in the order of the table def's primary key columns. """ - print "LOAD CHECK1" ret = self._extension.load(self, ident, **kwargs) if ret is not mapper.EXT_CONTINUE: return ret - print "LOAD CHECK2" key = self.mapper.identity_key_from_primary_key(ident) instance = self.populate_existing()._get(key, ident, **kwargs) - print "LOAD CHECK3" if instance is None and raiseerr: raise exceptions.InvalidRequestError("No instance found for identity %s" % repr(ident)) return instance |
