[pypy-svn] r13486 - pypy/dist/pypy/annotation

arigo at codespeak.net arigo at codespeak.net
Thu Jun 16 19:33:17 CEST 2005


Author: arigo
Date: Thu Jun 16 19:33:16 2005
New Revision: 13486

Modified:
   pypy/dist/pypy/annotation/bookkeeper.py
Log:
Looks like a bug.


Modified: pypy/dist/pypy/annotation/bookkeeper.py
==============================================================================
--- pypy/dist/pypy/annotation/bookkeeper.py	(original)
+++ pypy/dist/pypy/annotation/bookkeeper.py	Thu Jun 16 19:33:16 2005
@@ -390,7 +390,7 @@
                 break
 
         if first is not None:
-            change, rep, access = access_sets.find(objects[0])
+            change, rep, access = access_sets.find(first)
             for obj in objects:
                 if obj is not None:
                     change1, rep, access = access_sets.union(rep, obj)



More information about the Pypy-commit mailing list