[pypy-svn] r39154 - pypy/dist/pypy/objspace/std

cfbolz at codespeak.net cfbolz at codespeak.net
Sun Feb 18 14:45:17 CET 2007


Author: cfbolz
Date: Sun Feb 18 14:45:16 2007
New Revision: 39154

Modified:
   pypy/dist/pypy/objspace/std/stringobject.py
Log:
kill unused var


Modified: pypy/dist/pypy/objspace/std/stringobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/stringobject.py	(original)
+++ pypy/dist/pypy/objspace/std/stringobject.py	Sun Feb 18 14:45:16 2007
@@ -647,7 +647,6 @@
         # cannot return w_self, in case it is a subclass of str
         return space.wrap(input)
 
-    result = []
     buf = [' '] * width
     if len(input) > 0 and (input[0] == '+' or input[0] == '-'):
         buf[0] = input[0]



More information about the Pypy-commit mailing list