summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-02-21 17:49:57 (GMT)
committerGeorg Brandl <georg@python.org>2006-02-21 17:49:57 (GMT)
commitc2fb6c74c65548ae2eedab32ba8116e62eb3adaf (patch)
tree1a0ef067c954f818e893c4bc7473f8ec7c0ae71e /Modules
parent42a3deb7b5bd3d3b072f4bf652c1cc3ebf739807 (diff)
downloadcpython-c2fb6c74c65548ae2eedab32ba8116e62eb3adaf.zip
cpython-c2fb6c74c65548ae2eedab32ba8116e62eb3adaf.tar.gz
cpython-c2fb6c74c65548ae2eedab32ba8116e62eb3adaf.tar.bz2
Fix typo in functional module
Diffstat (limited to 'Modules')
-rw-r--r--Modules/functionalmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/functionalmodule.c b/Modules/functionalmodule.c
index 58b07d9..4b2e9b4 100644
--- a/Modules/functionalmodule.c
+++ b/Modules/functionalmodule.c
@@ -191,7 +191,7 @@ partial_set_dict(partialobject *pto, PyObject *value)
return 0;
}
-static PyGetSetDef partail_getsetlist[] = {
+static PyGetSetDef partial_getsetlist[] = {
{"__dict__", (getter)partial_get_dict, (setter)partial_set_dict},
{NULL} /* Sentinel */
};
@@ -229,7 +229,7 @@ static PyTypeObject partial_type = {
0, /* tp_iternext */
0, /* tp_methods */
partial_memberlist, /* tp_members */
- partail_getsetlist, /* tp_getset */
+ partial_getsetlist, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */