diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-07-02 23:22:30 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-07-02 23:22:30 (GMT) |
commit | 4b02c5a8545cf6bc7f223ba18f72d70670d8110d (patch) | |
tree | 41b7e36a5d2993584df3e5e4832e9da703be0031 | |
parent | 612f61f0f054a878dee308d93c2a9d204a81a260 (diff) | |
download | cpython-4b02c5a8545cf6bc7f223ba18f72d70670d8110d.zip cpython-4b02c5a8545cf6bc7f223ba18f72d70670d8110d.tar.gz cpython-4b02c5a8545cf6bc7f223ba18f72d70670d8110d.tar.bz2 |
Correct a typo that breaks test_distutils
-rw-r--r-- | Modules/xxmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/xxmodule.c b/Modules/xxmodule.c index efa97b4..602cdfe 100644 --- a/Modules/xxmodule.c +++ b/Modules/xxmodule.c @@ -72,7 +72,7 @@ Xxo_getattro(XxoObject *self, PyObject *name) return v; } } - return PyObject_GenericGetattr((PyObject *)self, name); + return PyObject_GenericGetAttr((PyObject *)self, name); } static int |