[pypy-svn] r73152 - pypy/trunk/pypy/objspace/std

benjamin at codespeak.net benjamin at codespeak.net
Tue Mar 30 00:58:00 CEST 2010


Author: benjamin
Date: Tue Mar 30 00:57:58 2010
New Revision: 73152

Modified:
   pypy/trunk/pypy/objspace/std/iterobject.py
   pypy/trunk/pypy/objspace/std/sliceobject.py
Log:
remove old review comments

Modified: pypy/trunk/pypy/objspace/std/iterobject.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/iterobject.py	(original)
+++ pypy/trunk/pypy/objspace/std/iterobject.py	Tue Mar 30 00:57:58 2010
@@ -1,9 +1,4 @@
-"""
-Reviewed 03-06-22
-Sequence-iteration is correctly implemented, thoroughly
-tested, and complete. The only missing feature is support
-for function-iteration.
-"""
+"""Generic iterator implementations"""
 from pypy.interpreter.error import OperationError
 from pypy.objspace.std.model import registerimplementation, W_Object
 from pypy.objspace.std.register_all import register_all
@@ -11,7 +6,7 @@
 
 class W_AbstractSeqIterObject(W_Object):
     from pypy.objspace.std.itertype import iter_typedef as typedef
-    
+
     def __init__(w_self, w_seq, index=0):
         if index < 0:
             index = 0

Modified: pypy/trunk/pypy/objspace/std/sliceobject.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/sliceobject.py	(original)
+++ pypy/trunk/pypy/objspace/std/sliceobject.py	Tue Mar 30 00:57:58 2010
@@ -1,9 +1,4 @@
-"""
-Reviewed 03-06-21
-
-slice object construction   tested, OK
-indices method              tested, OK
-"""
+"""Slice object"""
 
 from pypy.interpreter.error import OperationError
 from pypy.interpreter import gateway



More information about the Pypy-commit mailing list