Searched refs:PySequence_Fast (Results 1 – 16 of 16) sorted by relevance
/external/python/cpython2/Doc/c-api/ |
D | sequence.rst | 176 .. c:function:: PyObject* PySequence_Fast(PyObject *o, const char *m) 187 :c:func:`PySequence_Fast`, *o* is not *NULL*, and that *i* is within bounds. 197 by :c:func:`PySequence_Fast` and *o* is not *NULL*. 223 :c:func:`PySequence_Fast` and that *o* is not *NULL*. The size can also be
|
/external/python/cpython2/Modules/_ctypes/ |
D | stgdict.c | 198 fieldlist = PySequence_Fast(fields, "_fields_ must be a sequence"); in MakeFields() 277 anon_names = PySequence_Fast(anon, "_anonymous_ must be a sequence"); in MakeAnonFields()
|
/external/python/cpython2/Include/ |
D | abstract.h | 1150 PyAPI_FUNC(PyObject *) PySequence_Fast(PyObject *o, const char* m);
|
/external/python/cpython2/Objects/ |
D | structseq.c | 156 arg = PySequence_Fast(arg, "constructor requires a sequence"); in structseq_new()
|
D | listobject.c | 646 v_as_SF = PySequence_Fast(v, "can only assign an iterable"); in list_ass_slice() 817 b = PySequence_Fast(b, "argument must be iterable"); in listextend() 2704 seq = PySequence_Fast(value, in list_ass_subscript()
|
D | bytearrayobject.c | 2610 seq = PySequence_Fast(it, "can only join an iterable"); in bytearray_join()
|
D | abstract.c | 2275 PySequence_Fast(PyObject *v, const char *m) function
|
D | dictobject.c | 1532 fast = PySequence_Fast(item, ""); in PyDict_MergeFromSeq2()
|
D | stringobject.c | 1598 seq = PySequence_Fast(orig, "can only join an iterable"); in string_join()
|
D | unicodeobject.c | 5659 fseq = PySequence_Fast(seq, "can only join an iterable"); in PyUnicode_Join()
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1150 PySequence_Fast:PyObject*::+1: 1151 PySequence_Fast:PyObject*:v:0: 1152 PySequence_Fast:const char*:m::
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 112 "PySequence_Fast"
|
/external/python/cpython2/Modules/ |
D | _elementtree.c | 772 seq = PySequence_Fast(seq_in, ""); in element_extend() 1400 seq = PySequence_Fast(value, "");
|
D | selectmodule.c | 95 fast_seq = PySequence_Fast(seq, "arguments 1-3 must be sequences"); in seq2set()
|
D | _json.c | 2272 s_fast = PySequence_Fast(seq, "_iterencode_list needs a sequence"); in encoder_listencode_list()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 6378 NULL result from PySequence_Fast(), more quickly than calling 7342 list(), tuple() (PySequence_Tuple() and PySequence_Fast() in C API)
|