summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-07-02 23:22:30 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-07-02 23:22:30 (GMT)
commit4b02c5a8545cf6bc7f223ba18f72d70670d8110d (patch)
tree41b7e36a5d2993584df3e5e4832e9da703be0031
parent612f61f0f054a878dee308d93c2a9d204a81a260 (diff)
downloadcpython-4b02c5a8545cf6bc7f223ba18f72d70670d8110d.zip
cpython-4b02c5a8545cf6bc7f223ba18f72d70670d8110d.tar.gz
cpython-4b02c5a8545cf6bc7f223ba18f72d70670d8110d.tar.bz2
Correct a typo that breaks test_distutils
-rw-r--r--Modules/xxmodule.c2
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