]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix the merge
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 18 Aug 2013 19:36:26 +0000 (15:36 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 18 Aug 2013 19:36:26 +0000 (15:36 -0400)
lib/sqlalchemy/util/_collections.py

index 4da13b3fe0d38aa2309afc9511e9952968456767..b2f03450decee556ab1b5d581f493b2a038e15bf 100644 (file)
@@ -626,11 +626,7 @@ class WeakSequence(object):
         self._storage.remove(ref)
 
     def __iter__(self):
-<<<<<<< HEAD
-        return self._storage.itervalues()
-=======
         return (obj for obj in (ref() for ref in self._storage) if obj is not None)
->>>>>>> 676876f... Fixed a potential issue in an ordered sequence implementation used
 
     def __getitem__(self, index):
         try: