[pypy-svn] r73319 - pypy/branch/cpython-extension/pypy/module/cpyext

fijal at codespeak.net fijal at codespeak.net
Sat Apr 3 01:55:05 CEST 2010


Author: fijal
Date: Sat Apr  3 01:55:03 2010
New Revision: 73319

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/stringobject.py
Log:
typo


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/stringobject.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/stringobject.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/stringobject.py	Sat Apr  3 01:55:03 2010
@@ -68,7 +68,7 @@
     
     This function used an int type for newsize. This might
     require changes in your code for properly supporting 64-bit systems."""
-    # XXX always create a new string so fa
+    # XXX always create a new string so far
     w_s = from_ref(space, ref[0])
     ptr = make_ref(space, space.wrap(space.str_w(w_s)[:newsize]))
     Py_DecRef(space, ref[0])



More information about the Pypy-commit mailing list