Home
last modified time | relevance | path

Searched refs:_PyArg_NoKeywords (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython2/Modules/
Doperator.c470 if (!_PyArg_NoKeywords("itemgetter()", kwds)) in itemgetter_new()
514 if (kw != NULL && !_PyArg_NoKeywords("itemgetter", kw)) in itemgetter_call()
609 if (!_PyArg_NoKeywords("attrgetter()", kwds)) in attrgetter_new()
696 if (kw != NULL && !_PyArg_NoKeywords("attrgetter", kw)) in attrgetter_call()
844 if (kw != NULL && !_PyArg_NoKeywords("methodcaller", kw)) in methodcaller_call()
Ditertoolsmodule.c706 if (type == &cycle_type && !_PyArg_NoKeywords("cycle()", kwds)) in cycle_new()
857 if (type == &dropwhile_type && !_PyArg_NoKeywords("dropwhile()", kwds)) in dropwhile_new()
1001 if (type == &takewhile_type && !_PyArg_NoKeywords("takewhile()", kwds)) in takewhile_new()
1145 if (type == &islice_type && !_PyArg_NoKeywords("islice()", kwds)) in islice_new()
1343 if (type == &starmap_type && !_PyArg_NoKeywords("starmap()", kwds)) in starmap_new()
1474 if (type == &imap_type && !_PyArg_NoKeywords("imap()", kwds)) in imap_new()
1667 if (type == &chain_type && !_PyArg_NoKeywords("chain()", kwds)) in chain_new()
2970 if (type == &ifilter_type && !_PyArg_NoKeywords("ifilter()", kwds)) in ifilter_new()
3115 !_PyArg_NoKeywords("ifilterfalse()", kwds)) in ifilterfalse_new()
3513 if (type == &izip_type && !_PyArg_NoKeywords("izip()", kwds)) in izip_new()
D_randommodule.c504 if (type == &Random_Type && !_PyArg_NoKeywords("Random()", kwds)) in random_new()
Dzipimport.c66 if (!_PyArg_NoKeywords("zipimporter()", kwds)) in zipimporter_init()
Darraymodule.c1962 if (type == &Arraytype && !_PyArg_NoKeywords("array.array()", kwds)) in array_new()
/external/python/cpython2/Include/
Dmodsupport.h33 PyAPI_FUNC(int) _PyArg_NoKeywords(const char *funcname, PyObject *kw);
/external/python/cpython2/Objects/
Drangeobject.c71 if (!_PyArg_NoKeywords("xrange()", kw)) in range_new()
Dfuncobject.c658 if (!_PyArg_NoKeywords("classmethod", kwds)) in cm_init()
813 if (!_PyArg_NoKeywords("staticmethod", kwds)) in sm_init()
Denumobject.c230 if (type == &PyReversed_Type && !_PyArg_NoKeywords("reversed()", kwds)) in reversed_new()
Dsliceobject.c199 if (!_PyArg_NoKeywords("slice()", kw)) in slice_new()
Dsetobject.c1046 if (type == &PyFrozenSet_Type && !_PyArg_NoKeywords("frozenset()", kwds)) in frozenset_new()
1090 if (type == &PySet_Type && !_PyArg_NoKeywords("set()", kwds)) in set_new()
1999 if (PySet_Check(self) && !_PyArg_NoKeywords("set()", kwds)) in set_init()
Dbufferobject.c242 if (!_PyArg_NoKeywords("buffer()", kw)) in buffer_new()
Dweakrefobject.c336 if (!_PyArg_NoKeywords("ref()", kwargs)) in weakref___init__()
Dexceptions.c58 if (!_PyArg_NoKeywords(Py_TYPE(self)->tp_name, kwds)) in BaseException_init()
Dclassobject.c2360 if (!_PyArg_NoKeywords("instancemethod", kw)) in instancemethod_new()
Dtypeobject.c6765 if (!_PyArg_NoKeywords("super", kwds))
/external/python/cpython2/Modules/_sqlite/
Drow.c45 if (!_PyArg_NoKeywords("Row()", kwargs)) in pysqlite_row_new()
Dconnection.c1201 if (!_PyArg_NoKeywords(MODULE_NAME ".Connection()", kwargs)) in pysqlite_connection_call()
/external/python/cpython2/PC/os2emx/
Dpython27.def934 "_PyArg_NoKeywords"
/external/python/cpython2/Python/
Dgetargs.c1917 _PyArg_NoKeywords(const char *funcname, PyObject *kw) in _PyArg_NoKeywords() function
Dimport.c3337 if (!_PyArg_NoKeywords("NullImporter()", kwds)) in NullImporter_init()