diff options
author | Walter Dörwald <walter@livinglogic.de> | 2007-07-01 21:58:22 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2007-07-01 21:58:22 (GMT) |
commit | d09413012cb6b03fdae1439eaacc6076ce09f7b7 (patch) | |
tree | fb5203b5a4042d60042c89ce8a5c88e19daceb42 /Modules/arraymodule.c | |
parent | 8934fc26c17f6a24d3643e1d4cce6e7ec341e92f (diff) | |
download | cpython-d09413012cb6b03fdae1439eaacc6076ce09f7b7.zip cpython-d09413012cb6b03fdae1439eaacc6076ce09f7b7.tar.gz cpython-d09413012cb6b03fdae1439eaacc6076ce09f7b7.tar.bz2 |
Revert r56044 (which changed the %c format specifier to accept a
unicode char into an int variable) and add %C which does this.
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r-- | Modules/arraymodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 6c9038a..2539077 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -1785,7 +1785,7 @@ array_new(PyTypeObject *type, PyObject *args, PyObject *kwds) if (type == &Arraytype && !_PyArg_NoKeywords("array.array()", kwds)) return NULL; - if (!PyArg_ParseTuple(args, "c|O:array", &c, &initial)) + if (!PyArg_ParseTuple(args, "C|O:array", &c, &initial)) return NULL; if (!(initial == NULL || PyList_Check(initial) |