Searched refs:array_reconstructor (Results 1 – 2 of 2) sorted by relevance
| /external/python/cpython3/Lib/test/ |
| D | test_array.py | 15 from array import _array_reconstructor as array_reconstructor unknown 79 self.assertRaises(TypeError, array_reconstructor, 81 self.assertRaises(TypeError, array_reconstructor, 83 self.assertRaises(TypeError, array_reconstructor, 85 self.assertRaises(TypeError, array_reconstructor, 87 self.assertRaises(ValueError, array_reconstructor, 89 self.assertRaises(ValueError, array_reconstructor, 91 self.assertRaises(ValueError, array_reconstructor, 93 self.assertRaises(ValueError, array_reconstructor, 154 b = array_reconstructor( [all …]
|
| /external/python/cpython3/Modules/ |
| D | arraymodule.c | 2152 static PyObject *array_reconstructor = NULL; in array_array___reduce_ex__() local 2157 if (array_reconstructor == NULL) { in array_array___reduce_ex__() 2161 array_reconstructor = _PyObject_GetAttrId( in array_array___reduce_ex__() 2165 if (array_reconstructor == NULL) in array_array___reduce_ex__() 2218 "O(OCiN)O", array_reconstructor, Py_TYPE(self), typecode, in array_array___reduce_ex__()
|