[pypy-svn] r58041 - pypy/branch/tuple-nonresizable-395/pypy/interpreter/astcompiler

fijal at codespeak.net fijal at codespeak.net
Wed Sep 10 18:36:45 CEST 2008


Author: fijal
Date: Wed Sep 10 18:36:40 2008
New Revision: 58041

Modified:
   pypy/branch/tuple-nonresizable-395/pypy/interpreter/astcompiler/ast.py
Log:
Mention wrong algorithm


Modified: pypy/branch/tuple-nonresizable-395/pypy/interpreter/astcompiler/ast.py
==============================================================================
--- pypy/branch/tuple-nonresizable-395/pypy/interpreter/astcompiler/ast.py	(original)
+++ pypy/branch/tuple-nonresizable-395/pypy/interpreter/astcompiler/ast.py	Wed Sep 10 18:36:40 2008
@@ -5923,6 +5923,7 @@
             child.accept(self)
 
     def _mutate_list(self, lst):
+        # XXX O(n^2)
         i = 0
         while i < len(lst):
             item = lst[i].mutate(self)



More information about the Pypy-commit mailing list