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

fijal at codespeak.net fijal at codespeak.net
Sat Apr 3 02:04:03 CEST 2010


Author: fijal
Date: Sat Apr  3 02:04:02 2010
New Revision: 73321

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/getargs.py
Log:
this is actually flags


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/getargs.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/getargs.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/getargs.py	Sat Apr  3 02:04:02 2010
@@ -14,7 +14,7 @@
 
 @cpython_api([PyObject, rffi.CCHARP, VA_LIST_P, rffi.INT_real],
              rffi.INT_real, error=0)
-def pypy_vgetargs1(space, w_obj, fmt, va_list_p, lgt):
+def pypy_vgetargs1(space, w_obj, fmt, va_list_p, flags):
     i = 0
     while True:
         c = fmt[i]



More information about the Pypy-commit mailing list