Home
last modified time | relevance | path

Searched refs:PySequence_Fast (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython2/Doc/c-api/
Dsequence.rst176 .. 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/
Dstgdict.c198 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/
Dabstract.h1150 PyAPI_FUNC(PyObject *) PySequence_Fast(PyObject *o, const char* m);
/external/python/cpython2/Objects/
Dstructseq.c156 arg = PySequence_Fast(arg, "constructor requires a sequence"); in structseq_new()
Dlistobject.c646 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()
Dbytearrayobject.c2610 seq = PySequence_Fast(it, "can only join an iterable"); in bytearray_join()
Dabstract.c2275 PySequence_Fast(PyObject *v, const char *m) function
Ddictobject.c1532 fast = PySequence_Fast(item, ""); in PyDict_MergeFromSeq2()
Dstringobject.c1598 seq = PySequence_Fast(orig, "can only join an iterable"); in string_join()
Dunicodeobject.c5659 fseq = PySequence_Fast(seq, "can only join an iterable"); in PyUnicode_Join()
/external/python/cpython2/Doc/data/
Drefcounts.dat1150 PySequence_Fast:PyObject*::+1:
1151 PySequence_Fast:PyObject*:v:0:
1152 PySequence_Fast:const char*:m::
/external/python/cpython2/PC/os2emx/
Dpython27.def112 "PySequence_Fast"
/external/python/cpython2/Modules/
D_elementtree.c772 seq = PySequence_Fast(seq_in, ""); in element_extend()
1400 seq = PySequence_Fast(value, "");
Dselectmodule.c95 fast_seq = PySequence_Fast(seq, "arguments 1-3 must be sequences"); in seq2set()
D_json.c2272 s_fast = PySequence_Fast(seq, "_iterencode_list needs a sequence"); in encoder_listencode_list()
/external/python/cpython2/Misc/
DHISTORY6378 NULL result from PySequence_Fast(), more quickly than calling
7342 list(), tuple() (PySequence_Tuple() and PySequence_Fast() in C API)