diff options
author | Skip Montanaro <skip@pobox.com> | 2003-08-11 13:09:12 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-08-11 13:09:12 (GMT) |
commit | 4a0d3d2e40667c71e00a0b9db594241257beca30 (patch) | |
tree | 85deb3ea3db4da51cbbc0d7810f2e7ca0d5a4849 /Modules | |
parent | 68debc935b01b55ab4daf4032131101f86dc750e (diff) | |
download | cpython-4a0d3d2e40667c71e00a0b9db594241257beca30.zip cpython-4a0d3d2e40667c71e00a0b9db594241257beca30.tar.gz cpython-4a0d3d2e40667c71e00a0b9db594241257beca30.tar.bz2 |
typos
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/cStringIO.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c index ac84ab0..7e8874b 100644 --- a/Modules/cStringIO.c +++ b/Modules/cStringIO.c @@ -52,7 +52,7 @@ typedef struct { #define IOOOBJECT(O) ((IOobject*)(O)) -/* Declarations for objects of type StringO */ +/* Declarations for objects of type StringIO */ typedef struct { /* Subtype of IOobject */ PyObject_HEAD @@ -487,7 +487,7 @@ PyDoc_STRVAR(Otype__doc__, "Simple type for output to strings."); static PyTypeObject Otype = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ - "cStringIO.StringO", /*tp_name*/ + "cStringIO.StringIO", /*tp_name*/ sizeof(Oobject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /* methods */ @@ -540,7 +540,7 @@ newOobject(int size) { return (PyObject*)self; } -/* End of code for StringO objects */ +/* End of code for StringIO objects */ /* -------------------------------------------------------- */ static PyObject * |