[pypy-commit] pypy default: Remove these old comments

arigo noreply at buildbot.pypy.org
Sat Jul 26 15:34:20 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r72511:e65dfce91ce5
Date: 2014-07-26 15:34 +0200
http://bitbucket.org/pypy/pypy/changeset/e65dfce91ce5/

Log:	Remove these old comments

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
@@ -30,10 +30,6 @@
         raise NotImplementedError
 
     def descr_reduce(self, space):
-        """
-        XXX to do: remove this __reduce__ method and do
-        a registration with copy_reg, instead.
-        """
         from pypy.interpreter.mixedmodule import MixedModule
         w_mod = space.getbuiltinmodule('_pickle_support')
         mod = space.interp_w(MixedModule, w_mod)
@@ -125,10 +121,6 @@
         self.index = space.int_w(self.w_len) + index
 
     def descr_reduce(self, space):
-        """
-        XXX to do: remove this __reduce__ method and do
-        a registration with copy_reg, instead.
-        """
         from pypy.interpreter.mixedmodule import MixedModule
         w_mod = space.getbuiltinmodule('_pickle_support')
         mod = space.interp_w(MixedModule, w_mod)


More information about the pypy-commit mailing list