[pypy-svn] r73337 - pypy/trunk/pypy/rlib

benjamin at codespeak.net benjamin at codespeak.net
Sat Apr 3 19:43:15 CEST 2010


Author: benjamin
Date: Sat Apr  3 19:43:12 2010
New Revision: 73337

Modified:
   pypy/trunk/pypy/rlib/rcoroutine.py
Log:
typo

Modified: pypy/trunk/pypy/rlib/rcoroutine.py
==============================================================================
--- pypy/trunk/pypy/rlib/rcoroutine.py	(original)
+++ pypy/trunk/pypy/rlib/rcoroutine.py	Sat Apr  3 19:43:12 2010
@@ -111,7 +111,7 @@
             self.temp_exc = exc
 
         def check_for_zombie(self, obj):
-            return co in self.to_delete
+            return obj in self.to_delete
 
         def postpone_deletion(self, obj):
             self.to_delete.append(obj)



More information about the Pypy-commit mailing list