Author: Maciej Fijalkowski <[email protected]>
Branch: virtual-arguments
Changeset: r56278:7057b4867eb7
Date: 2012-07-20 10:45 +0200
http://bitbucket.org/pypy/pypy/changeset/7057b4867eb7/

Log:    backout cc8bf3449424

diff --git a/pypy/module/__pypy__/bytebuffer.py 
b/pypy/module/__pypy__/bytebuffer.py
--- a/pypy/module/__pypy__/bytebuffer.py
+++ b/pypy/module/__pypy__/bytebuffer.py
@@ -9,8 +9,6 @@
 class ByteBuffer(RWBuffer):
 
     def __init__(self, len):
-        if len < 0:
-            len = 0
         self.data = ['\x00'] * len
 
     def getlength(self):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to