Searched refs:typecodes (Results 1 – 10 of 10) sorted by relevance
21 typecodes = "cbBhHiIlLfd" variable23 typecodes += "u"69 return typecodes[(typecodes.index(self.typecode)+1) % len(typecodes)]1070 for typecode in typecodes:
939 typecodes = 'cbBhHiIlLfd'941 typecodes += 'u'942 for typecode in typecodes:
28 typecodes = 'ubBhHiIlLfdqQ' variable191 return typecodes[(typecodes.index(self.typecode)+1) % len(typecodes)]
3036 PyObject *typecodes; in array_modexec() local3063 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()
81 .. data:: typecodes
324 typecodes of the kind used by the :mod:`array` module: ``'d'`` indicates a
674 array.array() now accepts unicode typecodes. Based on patch by Vajrasky
633 Updated list of DNS RR typecodes
203 typecodes of the kind used by the :mod:`array` module: ``'d'`` indicates a
2093 Fix multiprocessing.sharedctypes to recognize typecodes ``'q'`` and ``'Q'``.