Home
last modified time | relevance | path

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

12

/external/python/cpython3/Include/
Dmodsupport.h62 PyAPI_FUNC(int) _PyArg_NoKeywords(const char *funcname, PyObject *kwargs);
64 #define _PyArg_NoKeywords(funcname, kwargs) \ macro
65 ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
/external/python/cpython3/Modules/clinic/
D_bz2module.c.h85 !_PyArg_NoKeywords("BZ2Compressor", kwargs)) { in _bz2_BZ2Compressor___init__()
169 !_PyArg_NoKeywords("BZ2Decompressor", kwargs)) { in _bz2_BZ2Decompressor___init__()
D_queuemodule.c.h24 !_PyArg_NoKeywords("SimpleQueue", kwargs)) { in simplequeue_new()
Dzipimport.c.h36 !_PyArg_NoKeywords("zipimporter", kwargs)) { in zipimport_zipimporter___init__()
D_ssl.c.h373 !_PyArg_NoKeywords("_SSLContext", kwargs)) { in _ssl__SSLContext()
764 !_PyArg_NoKeywords("MemoryBIO", kwargs)) { in _ssl_MemoryBIO()
/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.c692 if (type == &cycle_type && !_PyArg_NoKeywords("cycle()", kwds)) in cycle_new()
843 if (type == &dropwhile_type && !_PyArg_NoKeywords("dropwhile()", kwds)) in dropwhile_new()
987 if (type == &takewhile_type && !_PyArg_NoKeywords("takewhile()", kwds)) in takewhile_new()
1131 if (type == &islice_type && !_PyArg_NoKeywords("islice()", kwds)) in islice_new()
1329 if (type == &starmap_type && !_PyArg_NoKeywords("starmap()", kwds)) in starmap_new()
1460 if (type == &imap_type && !_PyArg_NoKeywords("imap()", kwds)) in imap_new()
1653 if (type == &chain_type && !_PyArg_NoKeywords("chain()", kwds)) in chain_new()
2960 if (type == &ifilter_type && !_PyArg_NoKeywords("ifilter()", kwds)) in ifilter_new()
3105 !_PyArg_NoKeywords("ifilterfalse()", kwds)) in ifilterfalse_new()
3503 if (type == &izip_type && !_PyArg_NoKeywords("izip()", kwds)) in izip_new()
/external/python/cpython3/Objects/clinic/
Denumobject.c.h58 !_PyArg_NoKeywords("reversed", kwargs)) { in reversed_new()
Dtupleobject.c.h68 !_PyArg_NoKeywords("tuple", kwargs)) { in tuple_new()
Dfloatobject.c.h173 !_PyArg_NoKeywords("float", kwargs)) { in float_new()
Dlistobject.c.h239 !_PyArg_NoKeywords("list", kwargs)) { in list___init__()
/external/python/cpython2/Include/
Dmodsupport.h33 PyAPI_FUNC(int) _PyArg_NoKeywords(const char *funcname, PyObject *kw);
/external/python/cpython3/Modules/
D_operator.c952 if (!_PyArg_NoKeywords("itemgetter", kwds)) in itemgetter_new()
996 if (!_PyArg_NoKeywords("itemgetter", kw)) in itemgetter_call()
1127 if (!_PyArg_NoKeywords("attrgetter", kwds)) in attrgetter_new()
1286 if (!_PyArg_NoKeywords("attrgetter", kw)) in attrgetter_call()
1530 if (!_PyArg_NoKeywords("methodcaller", kw)) in methodcaller_call()
Ditertoolsmodule.c894 if (type == &cycle_type && !_PyArg_NoKeywords("cycle", kwds)) in cycle_new()
1095 if (type == &dropwhile_type && !_PyArg_NoKeywords("dropwhile", kwds)) in dropwhile_new()
1263 if (type == &takewhile_type && !_PyArg_NoKeywords("takewhile", kwds)) in takewhile_new()
1431 if (type == &islice_type && !_PyArg_NoKeywords("islice", kwds)) in islice_new()
1685 if (type == &starmap_type && !_PyArg_NoKeywords("starmap", kwds)) in starmap_new()
1843 if (type == &chain_type && !_PyArg_NoKeywords("chain", kwds)) in chain_new()
3792 !_PyArg_NoKeywords("filterfalse", kwds)) in filterfalse_new()
D_randommodule.c440 if (type == &Random_Type && !_PyArg_NoKeywords("Random", kwds)) in random_new()
/external/python/cpython3/Objects/
Dboolobject.c48 if (!_PyArg_NoKeywords("bool", kwds)) in bool_new()
Dclassobject.c171 if (!_PyArg_NoKeywords("method", kw)) in method_new()
584 if (!_PyArg_NoKeywords("instancemethod", kw)) in instancemethod_new()
Dfuncobject.c707 if (!_PyArg_NoKeywords("classmethod", kwds)) in cm_init()
888 if (!_PyArg_NoKeywords("staticmethod", kwds)) in sm_init()
/external/python/cpython3/Modules/_sqlite/
Drow.c44 if (!_PyArg_NoKeywords("Row", kwargs)) in pysqlite_row_new()
/external/python/cpython2/Modules/_sqlite/
Drow.c45 if (!_PyArg_NoKeywords("Row()", kwargs)) in pysqlite_row_new()
/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()
Dsliceobject.c240 if (!_PyArg_NoKeywords("slice()", kw)) in slice_new()
Denumobject.c236 if (type == &PyReversed_Type && !_PyArg_NoKeywords("reversed()", kwds)) in reversed_new()
/external/python/cpython3/Modules/_io/clinic/
Dbufferedio.c.h434 !_PyArg_NoKeywords("BufferedRWPair", kwargs)) { in _io_BufferedRWPair___init__()

12