[Python-checkins] r45383 - peps/trunk/pep-0353.txt

martin.v.loewis python-checkins at python.org
Fri Apr 14 14:35:55 CEST 2006


Author: martin.v.loewis
Date: Fri Apr 14 14:35:54 2006
New Revision: 45383

Modified:
   peps/trunk/pep-0353.txt
Log:
Add PyObject_CallFunction and PyObject_CallMethod
to those with new conversion semantics.


Modified: peps/trunk/pep-0353.txt
==============================================================================
--- peps/trunk/pep-0353.txt	(original)
+++ peps/trunk/pep-0353.txt	Fri Apr 14 14:35:54 2006
@@ -72,7 +72,8 @@
 writebufferproc, segcountproc, and charbufferproc.
 
 A new conversion code 'n' is introduced for PyArg_ParseTuple
-and Py_BuildValue, which operates on Py_ssize_t.
+Py_BuildValue, PyObject_CallFunction and PyObject_CallMethod.
+This code operates on Py_ssize_t.
 
 The conversion codes 's#' and 't#' will output Py_ssize_t
 if the macro PY_SSIZE_T_CLEAN is defined before Python.h


More information about the Python-checkins mailing list