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

afa at codespeak.net afa at codespeak.net
Wed Apr 21 01:53:32 CEST 2010


Author: afa
Date: Wed Apr 21 01:53:30 2010
New Revision: 73927

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/longobject.py
Log:
translation fix


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/longobject.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/longobject.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/longobject.py	Wed Apr 21 01:53:30 2010
@@ -48,7 +48,7 @@
     raised."""
     return rffi.cast(rffi.ULONGLONG, space.r_ulonglong_w(w_long))
 
- at cpython_api([CONST_STRING, rffi.CCHARP, rffi.INT_real], PyObject)
+ at cpython_api([CONST_STRING, rffi.CCHARPP, rffi.INT_real], PyObject)
 def PyLong_FromString(space, str, pend, base):
     """Return a new PyLongObject based on the string value in str, which is
     interpreted according to the radix in base.  If pend is non-NULL,



More information about the Pypy-commit mailing list