[pypy-svn] r64107 - pypy/branch/wip-fix-stackless-O2-pickling/pypy/interpreter

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Apr 15 18:12:39 CEST 2009


Author: cfbolz
Date: Wed Apr 15 18:12:38 2009
New Revision: 64107

Modified:
   pypy/branch/wip-fix-stackless-O2-pickling/pypy/interpreter/gateway.py
Log:
(cfbolz, pedronis): This xxx is fixed, and there is an assert to check it.


Modified: pypy/branch/wip-fix-stackless-O2-pickling/pypy/interpreter/gateway.py
==============================================================================
--- pypy/branch/wip-fix-stackless-O2-pickling/pypy/interpreter/gateway.py	(original)
+++ pypy/branch/wip-fix-stackless-O2-pickling/pypy/interpreter/gateway.py	Wed Apr 15 18:12:38 2009
@@ -405,7 +405,6 @@
         eval.Code.__init__(self, func.__name__)
         self.docstring = func.__doc__
 
-        # xxx not unique right now
         self.identifier = "%s-%s-%s" % (func.__module__, func.__name__,
                                         getattr(self_type, '__name__', '*'))
 



More information about the Pypy-commit mailing list