[pypy-svn] r40272 - pypy/dist/demo

hpk at codespeak.net hpk at codespeak.net
Sun Mar 11 22:45:32 CET 2007


Author: hpk
Date: Sun Mar 11 22:45:31 2007
New Revision: 40272

Modified:
   pypy/dist/demo/tp-persistence.py
Log:
fixing changeops


Modified: pypy/dist/demo/tp-persistence.py
==============================================================================
--- pypy/dist/demo/tp-persistence.py	(original)
+++ pypy/dist/demo/tp-persistence.py	Sun Mar 11 22:45:31 2007
@@ -8,8 +8,8 @@
 from types import MethodType
 
 class PersistentListController(object):
-    _changeops = ('__iadd__ __imul__ __delitem__ __setitem__ __delslice__ '
-                  '__imul__ __init__ __setslice__ '
+    _changeops = ('__iadd__ __imul__ __delitem__ __setitem__ '
+                  '__delslice__ __setslice__ __init__ '
                   'append extend insert pop remove reverse sort').split()
 
     def __init__(self, obj, storage): 



More information about the Pypy-commit mailing list