]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- Corrected __eq__ pragma drift.
authorJason Kirtland <jek@discorporate.us>
Thu, 14 Feb 2008 22:07:58 +0000 (22:07 +0000)
committerJason Kirtland <jek@discorporate.us>
Thu, 14 Feb 2008 22:07:58 +0000 (22:07 +0000)
lib/sqlalchemy/orm/collections.py

index 45f978ba8961626084e1a65d13dcd33799dad2d5..8f04fdf7a0e77f257bfb7a793dd7c2e2af127a4d 100644 (file)
@@ -884,8 +884,8 @@ def _list_decorators():
 
     def remove(fn):
         def remove(self, value, _sa_initiator=None):
-            # testlib.pragma exempt:__eq__
             __before_delete(self, _sa_initiator)
+            # testlib.pragma exempt:__eq__
             fn(self, value)
             __del(self, value, _sa_initiator)
         _tidy(remove)