[pypy-commit] pypy cpyext-ext: remove debug cruft

mattip pypy.commits at gmail.com
Mon Jan 25 15:15:08 EST 2016


Author: mattip <matti.picus at gmail.com>
Branch: cpyext-ext
Changeset: r81938:d4fc8a14bff6
Date: 2016-01-18 20:46 +0200
http://bitbucket.org/pypy/pypy/changeset/d4fc8a14bff6/

Log:	remove debug cruft

diff --git a/pypy/module/cpyext/unicodeobject.py b/pypy/module/cpyext/unicodeobject.py
--- a/pypy/module/cpyext/unicodeobject.py
+++ b/pypy/module/cpyext/unicodeobject.py
@@ -66,7 +66,6 @@
     py_unicode = rffi.cast(PyUnicodeObject, py_obj)
     py_unicode.c_length = len(space.unicode_w(w_obj))
     py_unicode.c_str = lltype.nullptr(rffi.CWCHARP.TO)
-    print w_obj
     py_unicode.c_hash = space.hash_w(w_obj)
     py_unicode.c_defenc = lltype.nullptr(PyObject.TO)
 


More information about the pypy-commit mailing list