diff options
| author | Guido van Rossum <guido@python.org> | 1998-07-24 19:53:54 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1998-07-24 19:53:54 +0000 |
| commit | 2a502d8304cdb92109a35ad32a3bfa4fe246d84f (patch) | |
| tree | 826d79fe4d6ecd33bab1251bfba0f04f4a7f6bcb /Modules | |
| parent | d540509682717e1a10baec2d7c678fe89b146732 (diff) | |
| download | cpython-git-2a502d8304cdb92109a35ad32a3bfa4fe246d84f.tar.gz | |
Use 'S' format character for the optional constructor argument, so we
get a decent error message when it's not a string (instead of
confusing errors when trying to use the thing).
Diffstat (limited to 'Modules')
| -rw-r--r-- | Modules/cStringIO.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c index 2d7c940c08..494d895d3d 100644 --- a/Modules/cStringIO.c +++ b/Modules/cStringIO.c @@ -565,7 +565,7 @@ static PyObject * IO_StringIO(PyObject *self, PyObject *args) { PyObject *s=0; - UNLESS(PyArg_ParseTuple(args, "|O", &s)) return NULL; + UNLESS(PyArg_ParseTuple(args, "|S", &s)) return NULL; if(s) return newIobject(s); return newOobject(128); } |
