[pypy-svn] r20180 - pypy/branch/somepbc-refactoring/pypy/annotation

arigo at codespeak.net arigo at codespeak.net
Wed Nov 23 11:59:23 CET 2005


Author: arigo
Date: Wed Nov 23 11:59:22 2005
New Revision: 20180

Modified:
   pypy/branch/somepbc-refactoring/pypy/annotation/description.py
Log:
(mwh, arigo)

bug fix in calltable_add_row().



Modified: pypy/branch/somepbc-refactoring/pypy/annotation/description.py
==============================================================================
--- pypy/branch/somepbc-refactoring/pypy/annotation/description.py	(original)
+++ pypy/branch/somepbc-refactoring/pypy/annotation/description.py	Wed Nov 23 11:59:22 2005
@@ -55,7 +55,7 @@
                 # no compatible row.  Add this new one.
                 table.append(row)
             else:
-                if merged != row:
+                if merged != table[index]:
                     # remove the existing row
                     del table[index]
                     # Start over again with this expanded row



More information about the Pypy-commit mailing list