Author: Manuel Jacob
Branch: remove-iter-smm
Changeset: r64480:cc3baea7040d
Date: 2013-05-22 22:07 +0200
http://bitbucket.org/pypy/pypy/changeset/cc3baea7040d/

Log:    Remove commented out code.

diff --git a/pypy/objspace/std/iterobject.py b/pypy/objspace/std/iterobject.py
--- a/pypy/objspace/std/iterobject.py
+++ b/pypy/objspace/std/iterobject.py
@@ -33,11 +33,6 @@
         XXX to do: remove this __reduce__ method and do
         a registration with copy_reg, instead.
         """
-
-        # cpython does not support pickling iterators but stackless python do
-        #msg = 'Pickling for iterators dissabled as cpython does not support 
it'
-        #raise OperationError(space.w_TypeError, space.wrap(msg))
-
         from pypy.objspace.std.iterobject import W_AbstractSeqIterObject
         assert isinstance(self, W_AbstractSeqIterObject)
         from pypy.interpreter.mixedmodule import MixedModule
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to