summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-08-05 19:02:11 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-08-05 19:02:11 (GMT)
commit1151c8b7bf8c7d1857032187ad6a30c2064d569e (patch)
treef533eef3548535d78b2fe303abd7a6a5f9c5ce14 /Python
parent037605b50e512ba89a6570842508cab927c9a0ac (diff)
parent9b33872812582fd4891d178fb7ff95e631697660 (diff)
downloadcpython-1151c8b7bf8c7d1857032187ad6a30c2064d569e.zip
cpython-1151c8b7bf8c7d1857032187ad6a30c2064d569e.tar.gz
cpython-1151c8b7bf8c7d1857032187ad6a30c2064d569e.tar.bz2
Closes #22146: Merge with 3.4
Diffstat (limited to 'Python')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index a81af65..d905ba2 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -69,7 +69,7 @@ builtin___build_class__(PyObject *self, PyObject *args, PyObject *kwds)
func = PyTuple_GET_ITEM(args, 0); /* Better be callable */
if (!PyFunction_Check(func)) {
PyErr_SetString(PyExc_TypeError,
- "__build__class__: func must be a function");
+ "__build_class__: func must be a function");
return NULL;
}
name = PyTuple_GET_ITEM(args, 1);