[pypy-commit] pypy py3k: rekill str_w which snuck back in during a merge

pjenvey noreply at buildbot.pypy.org
Mon Feb 3 06:43:26 CET 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r69051:f2754640183a
Date: 2014-01-31 11:04 -0800
http://bitbucket.org/pypy/pypy/changeset/f2754640183a/

Log:	rekill str_w which snuck back in during a merge

diff --git a/pypy/objspace/std/unicodeobject.py b/pypy/objspace/std/unicodeobject.py
--- a/pypy/objspace/std/unicodeobject.py
+++ b/pypy/objspace/std/unicodeobject.py
@@ -57,9 +57,6 @@
             return None
         return space.wrap(compute_unique_id(space.unicode_w(self)))
 
-    def str_w(self, space):
-        return space.str_w(space.str(self))
-
     def unicode_w(self, space):
         return self._value
 


More information about the pypy-commit mailing list