Kaydet (Commit) 47fe5c0d authored tarafından Eli Bendersky's avatar Eli Bendersky

Issue #12672: fix code samples in extending/newtypes.html for PEP-7 compliance

üst ff3d3e4c
...@@ -289,18 +289,16 @@ strings, so we provide a new method:: ...@@ -289,18 +289,16 @@ strings, so we provide a new method::
self = (Noddy *)type->tp_alloc(type, 0); self = (Noddy *)type->tp_alloc(type, 0);
if (self != NULL) { if (self != NULL) {
self->first = PyString_FromString(""); self->first = PyString_FromString("");
if (self->first == NULL) if (self->first == NULL) {
{
Py_DECREF(self); Py_DECREF(self);
return NULL; return NULL;
} }
self->last = PyString_FromString(""); self->last = PyString_FromString("");
if (self->last == NULL) if (self->last == NULL) {
{
Py_DECREF(self); Py_DECREF(self);
return NULL; return NULL;
} }
self->number = 0; self->number = 0;
} }
......
...@@ -24,18 +24,16 @@ Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds) ...@@ -24,18 +24,16 @@ Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
self = (Noddy *)type->tp_alloc(type, 0); self = (Noddy *)type->tp_alloc(type, 0);
if (self != NULL) { if (self != NULL) {
self->first = PyUnicode_FromString(""); self->first = PyUnicode_FromString("");
if (self->first == NULL) if (self->first == NULL) {
{
Py_DECREF(self); Py_DECREF(self);
return NULL; return NULL;
} }
self->last = PyUnicode_FromString(""); self->last = PyUnicode_FromString("");
if (self->last == NULL) if (self->last == NULL) {
{
Py_DECREF(self); Py_DECREF(self);
return NULL; return NULL;
} }
self->number = 0; self->number = 0;
} }
...@@ -50,10 +48,10 @@ Noddy_init(Noddy *self, PyObject *args, PyObject *kwds) ...@@ -50,10 +48,10 @@ Noddy_init(Noddy *self, PyObject *args, PyObject *kwds)
static char *kwlist[] = {"first", "last", "number", NULL}; static char *kwlist[] = {"first", "last", "number", NULL};
if (! PyArg_ParseTupleAndKeywords(args, kwds, "|OOi", kwlist, if (! PyArg_ParseTupleAndKeywords(args, kwds, "|OOi", kwlist,
&first, &last, &first, &last,
&self->number)) &self->number))
return -1; return -1;
if (first) { if (first) {
tmp = self->first; tmp = self->first;
...@@ -111,7 +109,7 @@ Noddy_name(Noddy* self) ...@@ -111,7 +109,7 @@ Noddy_name(Noddy* self)
result = PyUnicode_Format(format, args); result = PyUnicode_Format(format, args);
Py_DECREF(args); Py_DECREF(args);
return result; return result;
} }
...@@ -145,12 +143,12 @@ static PyTypeObject NoddyType = { ...@@ -145,12 +143,12 @@ static PyTypeObject NoddyType = {
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_DEFAULT |
Py_TPFLAGS_BASETYPE, /* tp_flags */ Py_TPFLAGS_BASETYPE, /* tp_flags */
"Noddy objects", /* tp_doc */ "Noddy objects", /* tp_doc */
0, /* tp_traverse */ 0, /* tp_traverse */
0, /* tp_clear */ 0, /* tp_clear */
0, /* tp_richcompare */ 0, /* tp_richcompare */
0, /* tp_weaklistoffset */ 0, /* tp_weaklistoffset */
0, /* tp_iter */ 0, /* tp_iter */
0, /* tp_iternext */ 0, /* tp_iternext */
Noddy_methods, /* tp_methods */ Noddy_methods, /* tp_methods */
Noddy_members, /* tp_members */ Noddy_members, /* tp_members */
0, /* tp_getset */ 0, /* tp_getset */
...@@ -173,7 +171,7 @@ static PyModuleDef noddy2module = { ...@@ -173,7 +171,7 @@ static PyModuleDef noddy2module = {
}; };
PyMODINIT_FUNC PyMODINIT_FUNC
PyInit_noddy2(void) PyInit_noddy2(void)
{ {
PyObject* m; PyObject* m;
......
...@@ -24,18 +24,16 @@ Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds) ...@@ -24,18 +24,16 @@ Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
self = (Noddy *)type->tp_alloc(type, 0); self = (Noddy *)type->tp_alloc(type, 0);
if (self != NULL) { if (self != NULL) {
self->first = PyUnicode_FromString(""); self->first = PyUnicode_FromString("");
if (self->first == NULL) if (self->first == NULL) {
{
Py_DECREF(self); Py_DECREF(self);
return NULL; return NULL;
} }
self->last = PyUnicode_FromString(""); self->last = PyUnicode_FromString("");
if (self->last == NULL) if (self->last == NULL) {
{
Py_DECREF(self); Py_DECREF(self);
return NULL; return NULL;
} }
self->number = 0; self->number = 0;
} }
...@@ -50,10 +48,10 @@ Noddy_init(Noddy *self, PyObject *args, PyObject *kwds) ...@@ -50,10 +48,10 @@ Noddy_init(Noddy *self, PyObject *args, PyObject *kwds)
static char *kwlist[] = {"first", "last", "number", NULL}; static char *kwlist[] = {"first", "last", "number", NULL};
if (! PyArg_ParseTupleAndKeywords(args, kwds, "|SSi", kwlist, if (! PyArg_ParseTupleAndKeywords(args, kwds, "|SSi", kwlist,
&first, &last, &first, &last,
&self->number)) &self->number))
return -1; return -1;
if (first) { if (first) {
tmp = self->first; tmp = self->first;
...@@ -88,22 +86,22 @@ Noddy_getfirst(Noddy *self, void *closure) ...@@ -88,22 +86,22 @@ Noddy_getfirst(Noddy *self, void *closure)
static int static int
Noddy_setfirst(Noddy *self, PyObject *value, void *closure) Noddy_setfirst(Noddy *self, PyObject *value, void *closure)
{ {
if (value == NULL) { if (value == NULL) {
PyErr_SetString(PyExc_TypeError, "Cannot delete the first attribute"); PyErr_SetString(PyExc_TypeError, "Cannot delete the first attribute");
return -1; return -1;
} }
if (! PyUnicode_Check(value)) { if (! PyUnicode_Check(value)) {
PyErr_SetString(PyExc_TypeError, PyErr_SetString(PyExc_TypeError,
"The first attribute value must be a string"); "The first attribute value must be a string");
return -1; return -1;
} }
Py_DECREF(self->first); Py_DECREF(self->first);
Py_INCREF(value); Py_INCREF(value);
self->first = value; self->first = value;
return 0; return 0;
} }
static PyObject * static PyObject *
...@@ -116,30 +114,30 @@ Noddy_getlast(Noddy *self, void *closure) ...@@ -116,30 +114,30 @@ Noddy_getlast(Noddy *self, void *closure)
static int static int
Noddy_setlast(Noddy *self, PyObject *value, void *closure) Noddy_setlast(Noddy *self, PyObject *value, void *closure)
{ {
if (value == NULL) { if (value == NULL) {
PyErr_SetString(PyExc_TypeError, "Cannot delete the last attribute"); PyErr_SetString(PyExc_TypeError, "Cannot delete the last attribute");
return -1; return -1;
} }
if (! PyUnicode_Check(value)) { if (! PyUnicode_Check(value)) {
PyErr_SetString(PyExc_TypeError, PyErr_SetString(PyExc_TypeError,
"The last attribute value must be a string"); "The last attribute value must be a string");
return -1; return -1;
} }
Py_DECREF(self->last); Py_DECREF(self->last);
Py_INCREF(value); Py_INCREF(value);
self->last = value; self->last = value;
return 0; return 0;
} }
static PyGetSetDef Noddy_getseters[] = { static PyGetSetDef Noddy_getseters[] = {
{"first", {"first",
(getter)Noddy_getfirst, (setter)Noddy_setfirst, (getter)Noddy_getfirst, (setter)Noddy_setfirst,
"first name", "first name",
NULL}, NULL},
{"last", {"last",
(getter)Noddy_getlast, (setter)Noddy_setlast, (getter)Noddy_getlast, (setter)Noddy_setlast,
"last name", "last name",
NULL}, NULL},
...@@ -164,7 +162,7 @@ Noddy_name(Noddy* self) ...@@ -164,7 +162,7 @@ Noddy_name(Noddy* self)
result = PyUnicode_Format(format, args); result = PyUnicode_Format(format, args);
Py_DECREF(args); Py_DECREF(args);
return result; return result;
} }
...@@ -198,12 +196,12 @@ static PyTypeObject NoddyType = { ...@@ -198,12 +196,12 @@ static PyTypeObject NoddyType = {
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_DEFAULT |
Py_TPFLAGS_BASETYPE, /* tp_flags */ Py_TPFLAGS_BASETYPE, /* tp_flags */
"Noddy objects", /* tp_doc */ "Noddy objects", /* tp_doc */
0, /* tp_traverse */ 0, /* tp_traverse */
0, /* tp_clear */ 0, /* tp_clear */
0, /* tp_richcompare */ 0, /* tp_richcompare */
0, /* tp_weaklistoffset */ 0, /* tp_weaklistoffset */
0, /* tp_iter */ 0, /* tp_iter */
0, /* tp_iternext */ 0, /* tp_iternext */
Noddy_methods, /* tp_methods */ Noddy_methods, /* tp_methods */
Noddy_members, /* tp_members */ Noddy_members, /* tp_members */
Noddy_getseters, /* tp_getset */ Noddy_getseters, /* tp_getset */
...@@ -226,7 +224,7 @@ static PyModuleDef noddy3module = { ...@@ -226,7 +224,7 @@ static PyModuleDef noddy3module = {
}; };
PyMODINIT_FUNC PyMODINIT_FUNC
PyInit_noddy3(void) PyInit_noddy3(void)
{ {
PyObject* m; PyObject* m;
......
...@@ -27,7 +27,7 @@ Noddy_traverse(Noddy *self, visitproc visit, void *arg) ...@@ -27,7 +27,7 @@ Noddy_traverse(Noddy *self, visitproc visit, void *arg)
return 0; return 0;
} }
static int static int
Noddy_clear(Noddy *self) Noddy_clear(Noddy *self)
{ {
PyObject *tmp; PyObject *tmp;
...@@ -58,18 +58,16 @@ Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds) ...@@ -58,18 +58,16 @@ Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
self = (Noddy *)type->tp_alloc(type, 0); self = (Noddy *)type->tp_alloc(type, 0);
if (self != NULL) { if (self != NULL) {
self->first = PyUnicode_FromString(""); self->first = PyUnicode_FromString("");
if (self->first == NULL) if (self->first == NULL) {
{
Py_DECREF(self); Py_DECREF(self);
return NULL; return NULL;
} }
self->last = PyUnicode_FromString(""); self->last = PyUnicode_FromString("");
if (self->last == NULL) if (self->last == NULL) {
{
Py_DECREF(self); Py_DECREF(self);
return NULL; return NULL;
} }
self->number = 0; self->number = 0;
} }
...@@ -84,10 +82,10 @@ Noddy_init(Noddy *self, PyObject *args, PyObject *kwds) ...@@ -84,10 +82,10 @@ Noddy_init(Noddy *self, PyObject *args, PyObject *kwds)
static char *kwlist[] = {"first", "last", "number", NULL}; static char *kwlist[] = {"first", "last", "number", NULL};
if (! PyArg_ParseTupleAndKeywords(args, kwds, "|OOi", kwlist, if (! PyArg_ParseTupleAndKeywords(args, kwds, "|OOi", kwlist,
&first, &last, &first, &last,
&self->number)) &self->number))
return -1; return -1;
if (first) { if (first) {
tmp = self->first; tmp = self->first;
...@@ -145,7 +143,7 @@ Noddy_name(Noddy* self) ...@@ -145,7 +143,7 @@ Noddy_name(Noddy* self)
result = PyUnicode_Format(format, args); result = PyUnicode_Format(format, args);
Py_DECREF(args); Py_DECREF(args);
return result; return result;
} }
...@@ -182,10 +180,10 @@ static PyTypeObject NoddyType = { ...@@ -182,10 +180,10 @@ static PyTypeObject NoddyType = {
"Noddy objects", /* tp_doc */ "Noddy objects", /* tp_doc */
(traverseproc)Noddy_traverse, /* tp_traverse */ (traverseproc)Noddy_traverse, /* tp_traverse */
(inquiry)Noddy_clear, /* tp_clear */ (inquiry)Noddy_clear, /* tp_clear */
0, /* tp_richcompare */ 0, /* tp_richcompare */
0, /* tp_weaklistoffset */ 0, /* tp_weaklistoffset */
0, /* tp_iter */ 0, /* tp_iter */
0, /* tp_iternext */ 0, /* tp_iternext */
Noddy_methods, /* tp_methods */ Noddy_methods, /* tp_methods */
Noddy_members, /* tp_members */ Noddy_members, /* tp_members */
0, /* tp_getset */ 0, /* tp_getset */
...@@ -208,7 +206,7 @@ static PyModuleDef noddy4module = { ...@@ -208,7 +206,7 @@ static PyModuleDef noddy4module = {
}; };
PyMODINIT_FUNC PyMODINIT_FUNC
PyInit_noddy4(void) PyInit_noddy4(void)
{ {
PyObject* m; PyObject* m;
......
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