[pypy-svn] r4939 - pypy/branch/src-newobjectmodel/pypy/objspace

arigo at codespeak.net arigo at codespeak.net
Sat Jun 5 12:06:37 CEST 2004


Author: arigo
Date: Sat Jun  5 12:06:37 2004
New Revision: 4939

Modified:
   pypy/branch/src-newobjectmodel/pypy/objspace/descroperation.py
Log:
Typo.


Modified: pypy/branch/src-newobjectmodel/pypy/objspace/descroperation.py
==============================================================================
--- pypy/branch/src-newobjectmodel/pypy/objspace/descroperation.py	(original)
+++ pypy/branch/src-newobjectmodel/pypy/objspace/descroperation.py	Sat Jun  5 12:06:37 2004
@@ -247,7 +247,7 @@
                 if not e.match(space, space.w_StopIteration):
                     raise
                 return space.w_False
-            if space.is_true(space.eq(w_next, w_lookfor)):
+            if space.is_true(space.eq(w_next, w_item)):
                 return space.w_True
     
     # XXX not_ has a default implementation



More information about the Pypy-commit mailing list