Author: Manuel Jacob
Branch: remove-tuple-smm
Changeset: r64459:fdc2d31e59f2
Date: 2013-05-22 18:04 +0200
http://bitbucket.org/pypy/pypy/changeset/fdc2d31e59f2/

Log:    Remove this comment, too.

diff --git a/pypy/objspace/std/tupleobject.py b/pypy/objspace/std/tupleobject.py
--- a/pypy/objspace/std/tupleobject.py
+++ b/pypy/objspace/std/tupleobject.py
@@ -233,13 +233,13 @@
 
     def __init__(self, wrappeditems):
         make_sure_not_resized(wrappeditems)
-        self.wrappeditems = wrappeditems   # a list of wrapped values
+        self.wrappeditems = wrappeditems
 
     def tolist(self):
         return self.wrappeditems
 
     def getitems_copy(self):
-        return self.wrappeditems[:]   # returns a resizable list
+        return self.wrappeditems[:]  # returns a resizable list
 
     def length(self):
         return len(self.wrappeditems)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to