summaryrefslogtreecommitdiff
path: root/Modules/arraymodule.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-04 17:06:55 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-04 17:06:55 +0300
commitd3d3cf776267a880fcbce95885a51bb2b84fbf8e (patch)
tree5df290b6a7ad17c3c4c1f5779ac66457dc995caa /Modules/arraymodule.c
parent99b261a3b1afad17852a7534e2fcb16da17e1dbe (diff)
downloadcpython-d3d3cf776267a880fcbce95885a51bb2b84fbf8e.tar.gz
Fixed the array module broken in issue #23492.
array_array_frombytes() is used in other functions, but it's signature was changed. Closes issue #23866.
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r--Modules/arraymodule.c19
1 files changed, 4 insertions, 15 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index 3e9f297f1f..6e20aaa7d5 100644
--- a/Modules/arraymodule.c
+++ b/Modules/arraymodule.c
@@ -1403,7 +1403,7 @@ static PyObject *
array_array_fromfile_impl(arrayobject *self, PyObject *f, Py_ssize_t n)
/*[clinic end generated code: output=ec9f600e10f53510 input=e188afe8e58adf40]*/
{
- PyObject *args, *b, *res;
+ PyObject *b, *res;
Py_ssize_t itemsize = self->ob_descr->itemsize;
Py_ssize_t nbytes;
_Py_IDENTIFIER(read);
@@ -1432,13 +1432,8 @@ array_array_fromfile_impl(arrayobject *self, PyObject *f, Py_ssize_t n)
not_enough_bytes = (PyBytes_GET_SIZE(b) != nbytes);
- args = Py_BuildValue("(O)", b);
+ res = array_array_frombytes(self, b);
Py_DECREF(b);
- if (args == NULL)
- return NULL;
-
- res = array_array_frombytes(self, args);
- Py_DECREF(args);
if (res == NULL)
return NULL;
@@ -2672,15 +2667,9 @@ array_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
}
else if (initial != NULL && (PyByteArray_Check(initial) ||
PyBytes_Check(initial))) {
- PyObject *t_initial, *v;
- t_initial = PyTuple_Pack(1, initial);
- if (t_initial == NULL) {
- Py_DECREF(a);
- return NULL;
- }
+ PyObject *v;
v = array_array_frombytes((arrayobject *)a,
- t_initial);
- Py_DECREF(t_initial);
+ initial);
if (v == NULL) {
Py_DECREF(a);
return NULL;