]> granicus.if.org Git - python/commitdiff
typos
authorSkip Montanaro <skip@pobox.com>
Mon, 11 Aug 2003 13:09:12 +0000 (13:09 +0000)
committerSkip Montanaro <skip@pobox.com>
Mon, 11 Aug 2003 13:09:12 +0000 (13:09 +0000)
Modules/cStringIO.c

index ac84ab0c51b01f5d4a6039449d85c92991852d14..7e8874b5e0c5bc019b66dd4519d21599563cb15d 100644 (file)
@@ -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 *