mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Templates converted to new naming conventions (thanks to Chak Tan)
This commit is contained in:
parent
52e02998ef
commit
ebed75116f
17 changed files with 100 additions and 131 deletions
|
@ -1,12 +1,12 @@
|
|||
|
||||
static object *
|
||||
static PyObject *
|
||||
$abbrev$_$method$(self, args)
|
||||
object *self; /* Not used */
|
||||
object *args;
|
||||
PyObject *self; /* Not used */
|
||||
PyObject *args;
|
||||
{
|
||||
|
||||
if (!newgetargs(args, ""))
|
||||
if (!PyArg_ParseTuple(args, ""))
|
||||
return NULL;
|
||||
INCREF(None);
|
||||
return None;
|
||||
Py_INCREF(Py_None);
|
||||
return Py_None;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue