Kaydet (Commit) 4a0d3d2e authored tarafından Skip Montanaro's avatar Skip Montanaro

typos

üst 68debc93
...@@ -52,7 +52,7 @@ typedef struct { ...@@ -52,7 +52,7 @@ typedef struct {
#define IOOOBJECT(O) ((IOobject*)(O)) #define IOOOBJECT(O) ((IOobject*)(O))
/* Declarations for objects of type StringO */ /* Declarations for objects of type StringIO */
typedef struct { /* Subtype of IOobject */ typedef struct { /* Subtype of IOobject */
PyObject_HEAD PyObject_HEAD
...@@ -487,7 +487,7 @@ PyDoc_STRVAR(Otype__doc__, "Simple type for output to strings."); ...@@ -487,7 +487,7 @@ PyDoc_STRVAR(Otype__doc__, "Simple type for output to strings.");
static PyTypeObject Otype = { static PyTypeObject Otype = {
PyObject_HEAD_INIT(NULL) PyObject_HEAD_INIT(NULL)
0, /*ob_size*/ 0, /*ob_size*/
"cStringIO.StringO", /*tp_name*/ "cStringIO.StringIO", /*tp_name*/
sizeof(Oobject), /*tp_basicsize*/ sizeof(Oobject), /*tp_basicsize*/
0, /*tp_itemsize*/ 0, /*tp_itemsize*/
/* methods */ /* methods */
...@@ -540,7 +540,7 @@ newOobject(int size) { ...@@ -540,7 +540,7 @@ newOobject(int size) {
return (PyObject*)self; return (PyObject*)self;
} }
/* End of code for StringO objects */ /* End of code for StringIO objects */
/* -------------------------------------------------------- */ /* -------------------------------------------------------- */
static PyObject * static PyObject *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment