[pypy-svn] r27484 - pypy/dist/pypy/module/_pickle_support

ericvrp at codespeak.net ericvrp at codespeak.net
Fri May 19 17:22:09 CEST 2006


Author: ericvrp
Date: Fri May 19 17:22:02 2006
New Revision: 27484

Modified:
   pypy/dist/pypy/module/_pickle_support/maker.py
Log:
Removed print's because they would break translation


Modified: pypy/dist/pypy/module/_pickle_support/maker.py
==============================================================================
--- pypy/dist/pypy/module/_pickle_support/maker.py	(original)
+++ pypy/dist/pypy/module/_pickle_support/maker.py	Fri May 19 17:22:02 2006
@@ -37,13 +37,13 @@
 
 def dictiter_new(space, __args__):
     from pypy.objspace.std.dictobject import W_DictIterObject
-    print "dictiter_new here 1)", space, w_dictitertype, __args__
+    #print "dictiter_new here 1)", space, w_dictitertype, __args__
     w_type = space.gettypeobject(dictiter_typedef)
     w_obj = space.allocate_instance(W_DictIterObject, w_type)
-    print "dictiter_new here 2)", w_obj
+    #print "dictiter_new here 2)", w_obj
     # XXX W_DictIterObject.__init__(w_obj, space)
     # this is wrong, but we need to produce something different, anyway
-    print "dictiter_new here 3)", w_obj
+    #print "dictiter_new here 3)", w_obj
     return w_obj
 dictiter_new.unwrap_spec = [ObjSpace, Arguments]
 



More information about the Pypy-commit mailing list