diff options
author | Georg Brandl <georg@python.org> | 2006-02-21 17:49:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-02-21 17:49:57 (GMT) |
commit | c2fb6c74c65548ae2eedab32ba8116e62eb3adaf (patch) | |
tree | 1a0ef067c954f818e893c4bc7473f8ec7c0ae71e /Modules | |
parent | 42a3deb7b5bd3d3b072f4bf652c1cc3ebf739807 (diff) | |
download | cpython-c2fb6c74c65548ae2eedab32ba8116e62eb3adaf.zip cpython-c2fb6c74c65548ae2eedab32ba8116e62eb3adaf.tar.gz cpython-c2fb6c74c65548ae2eedab32ba8116e62eb3adaf.tar.bz2 |
Fix typo in functional module
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/functionalmodule.c | 4 |
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 */ |