[pypy-commit] pypy py3k: oops

amauryfa noreply at buildbot.pypy.org
Tue Oct 18 00:37:55 CEST 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r48165:d7c06c912cdd
Date: 2011-10-17 21:19 +0200
http://bitbucket.org/pypy/pypy/changeset/d7c06c912cdd/

Log:	oops

diff --git a/pypy/objspace/std/bytearrayobject.py b/pypy/objspace/std/bytearrayobject.py
--- a/pypy/objspace/std/bytearrayobject.py
+++ b/pypy/objspace/std/bytearrayobject.py
@@ -456,7 +456,6 @@
 # but they have to return a bytearray.
 def str_replace__Bytearray_ANY_ANY_ANY(space, w_bytearray, w_str1, w_str2, w_max):
     w_str = _to_bytes(space, w_bytearray)
-                                                         w_str2, w_max)
     w_res = stringobject.str_replace__String_ANY_ANY_ANY(space, w_str, w_str1,
                                                          w_str2, w_max)
     return String2Bytearray(space, w_res)


More information about the pypy-commit mailing list