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) _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit