[pypy-commit] pypy refactor-str-types: Fix.

Manuel Jacob noreply at buildbot.pypy.org
Tue Aug 20 17:47:03 CEST 2013


Author: Manuel Jacob
Branch: refactor-str-types
Changeset: r66269:bd29ce6880a0
Date: 2013-08-20 17:44 +0200
http://bitbucket.org/pypy/pypy/changeset/bd29ce6880a0/

Log:	Fix.

diff --git a/pypy/objspace/std/stringmethods.py b/pypy/objspace/std/stringmethods.py
--- a/pypy/objspace/std/stringmethods.py
+++ b/pypy/objspace/std/stringmethods.py
@@ -118,6 +118,8 @@
             return self._new(self._val(space)[0] * times)
         return self._new(self._val(space) * times)
 
+    descr_rmul = descr_mul
+
     def descr_getitem(self, space, w_index):
         if isinstance(w_index, W_SliceObject):
             selfvalue = self._val(space)


More information about the pypy-commit mailing list