Home
last modified time | relevance | path

Searched refs:typecodes (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_array.py21 typecodes = "cbBhHiIlLfd" variable
23 typecodes += "u"
69 return typecodes[(typecodes.index(self.typecode)+1) % len(typecodes)]
1070 for typecode in typecodes:
Dtest_re.py939 typecodes = 'cbBhHiIlLfd'
941 typecodes += 'u'
942 for typecode in typecodes:
/external/python/cpython3/Lib/test/
Dtest_array.py28 typecodes = 'ubBhHiIlLfdqQ' variable
191 return typecodes[(typecodes.index(self.typecode)+1) % len(typecodes)]
/external/python/cpython3/Modules/
Darraymodule.c3036 PyObject *typecodes; in array_modexec() local
3063 typecodes = PyUnicode_DecodeASCII(buffer, p - buffer, NULL); in array_modexec()
3064 if (PyModule_AddObject(m, "typecodes", typecodes) < 0) { in array_modexec()
3065 Py_XDECREF(typecodes); in array_modexec()
/external/python/cpython3/Doc/library/
Darray.rst81 .. data:: typecodes
Dmultiprocessing.rst324 typecodes of the kind used by the :mod:`array` module: ``'d'`` indicates a
/external/python/cpython2/Misc/NEWS.d/
D2.7.11rc1.rst674 array.array() now accepts unicode typecodes. Based on patch by Vajrasky
/external/tcpdump/
DCHANGES633 Updated list of DNS RR typecodes
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst203 typecodes of the kind used by the :mod:`array` module: ``'d'`` indicates a
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a1.rst2093 Fix multiprocessing.sharedctypes to recognize typecodes ``'q'`` and ``'Q'``.