diff options
author | Carl Friedrich Bolz-Tereick <cfbolz@gmx.de> | 2021-03-02 13:10:56 +0100 |
---|---|---|
committer | Carl Friedrich Bolz-Tereick <cfbolz@gmx.de> | 2021-03-02 13:10:56 +0100 |
commit | 21231520ef5d2370ea7bfe6a0a8cc398520465e2 (patch) | |
tree | c10f3f6b3ed211f1f5edd1c2f457c57ed414cf36 | |
parent | merge default into branch (diff) | |
download | pypy-py3.7.tar.gz pypy-py3.7.tar.bz2 pypy-py3.7.zip |
re-do 444773826a28 which got lost in a mergepy3.7
-rw-r--r-- | pypy/objspace/std/bytesobject.py | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/pypy/objspace/std/bytesobject.py b/pypy/objspace/std/bytesobject.py index 230926362e..663adabbf8 100644 --- a/pypy/objspace/std/bytesobject.py +++ b/pypy/objspace/std/bytesobject.py @@ -647,11 +647,28 @@ class W_BytesObject(W_AbstractBytesObject): # auto-conversion fun - _StringMethods_descr_add = descr_add - def descr_add(self, space, w_other): - return self._StringMethods_descr_add(space, w_other) - + @unwrap_spec(count=int) + def descr_replace(self, space, w_old, w_new, count=-1): from rpython.rlib.rstring import replace + # almost copy of StringMethods.descr_replace :-( + input = self._value + + sub = self._op_val(space, w_old) + by = self._op_val(space, w_new) + # the following two lines are for being bug-to-bug compatible + # with CPython: see issue #2448 + if count >= 0 and len(input) == 0: + return self._empty() + try: + res = replace(input, sub, by, count) + except OverflowError: + raise oefmt(space.w_OverflowError, "replace string is too long") + # difference: reuse self if no replacement was done + if type(self) is W_BytesObject and res is input: + return self + + return self._new(res) + _StringMethods_descr_join = descr_join def descr_join(self, space, w_list): l = space.listview_bytes(w_list) |