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

fijal at codespeak.net fijal at codespeak.net
Wed Jun 18 01:11:03 CEST 2008


Author: fijal
Date: Wed Jun 18 01:11:01 2008
New Revision: 55938

Modified:
   pypy/dist/pypy/objspace/std/stringobject.py
Log:
Remove pdb


Modified: pypy/dist/pypy/objspace/std/stringobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/stringobject.py	(original)
+++ pypy/dist/pypy/objspace/std/stringobject.py	Wed Jun 18 01:11:01 2008
@@ -942,7 +942,6 @@
     return decode_object(space, w_string, encoding, errors)
 
 def str_encode__String_ANY_ANY(space, w_string, w_encoding=None, w_errors=None):
-    #import pdb; pdb.set_trace()
     from pypy.objspace.std.unicodetype import _get_encoding_and_errors, \
         encode_object
     encoding, errors = _get_encoding_and_errors(space, w_encoding, w_errors)



More information about the Pypy-commit mailing list