]> granicus.if.org Git - python/commitdiff
Fix a failure that was only apparent on big-endian machines:
authorGuido van Rossum <guido@python.org>
Sat, 30 Jun 2007 23:44:36 +0000 (23:44 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 30 Jun 2007 23:44:36 +0000 (23:44 +0000)
the argument corresponding to 'c' in PyArg_ParseTuple() must be an int,
not a char!  (This is new -- Walter Doerwald changed it in r56044.
Note sure this was a good idea.)

Also removed a debug printf() call that was causing compiler warnings.

Modules/arraymodule.c

index 585ed2f2d34789b6719140b59703809697bddce3..6c9038af3df193155834d43fcd0bf01882ee221d 100644 (file)
@@ -1208,7 +1208,6 @@ array_fromfile(arrayobject *self, PyObject *args)
        }
 
        if (PyBytes_GET_SIZE(b) != nbytes) {
-               printf("nbytes = %d, len(b) == %d\n", nbytes, PyBytes_GET_SIZE(b));
                PyErr_SetString(PyExc_EOFError,
                                "read() didn't return enough bytes");
                Py_DECREF(b);
@@ -1779,7 +1778,7 @@ static PyBufferProcs array_as_buffer = {
 static PyObject *
 array_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
 {
-       char c;
+       int c;
        PyObject *initial = NULL, *it = NULL;
        struct arraydescr *descr;