From: Mike Bayer Date: Fri, 24 Oct 2008 19:43:29 +0000 (+0000) Subject: remove erroneous comments X-Git-Tag: rel_0_5rc3~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=baa9006c28d5e60a07b6a1a16695b0d927e7244b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git remove erroneous comments --- diff --git a/examples/query_caching/implicit.py b/examples/query_caching/implicit.py index 15a6d121ac..f3df273b1d 100644 --- a/examples/query_caching/implicit.py +++ b/examples/query_caching/implicit.py @@ -7,8 +7,6 @@ from sqlalchemy.orm.session import Session class CachingQuery(Query): - # single point of object loading is __iter__(). objects in the cache are not associated - # with a session and are never returned directly; only merged copies. def __iter__(self): try: cache = self.session._cache diff --git a/examples/query_caching/per_session.py b/examples/query_caching/per_session.py index 12684082cc..a861f14b6b 100644 --- a/examples/query_caching/per_session.py +++ b/examples/query_caching/per_session.py @@ -18,8 +18,6 @@ class CachingQuery(Query): def with_cache_key(self, cachekey): self.cachekey = cachekey - # single point of object loading is __iter__(). objects in the cache are not associated - # with a session and are never returned directly; only merged copies. def __iter__(self): if hasattr(self, 'cachekey'): try: