mirror of
https://github.com/python/cpython.git
synced 2025-10-30 05:01:30 +00:00
13 lines
169 B
Text
13 lines
169 B
Text
|
|
|
||
|
|
static object *
|
||
|
|
$abbrev$_$method$(self, args)
|
||
|
|
object *self; /* Not used */
|
||
|
|
object *args;
|
||
|
|
{
|
||
|
|
|
||
|
|
if (!newgetargs(args, ""))
|
||
|
|
return NULL;
|
||
|
|
INCREF(None);
|
||
|
|
return None;
|
||
|
|
}
|