summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-06-05 12:51:21 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-06-05 12:51:21 (GMT)
commit77acee95677152af7417ad47148cf24feb4c947c (patch)
tree24af5b2bc99c175f777e5f2a550957648a125dbf
parente4b83e013ba8c2bda78163da38783f79b1a86079 (diff)
downloadcpython-77acee95677152af7417ad47148cf24feb4c947c.zip
cpython-77acee95677152af7417ad47148cf24feb4c947c.tar.gz
cpython-77acee95677152af7417ad47148cf24feb4c947c.tar.bz2
Fix comment typo.
-rw-r--r--Objects/typeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index b28ab4d..94e78da 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -3876,7 +3876,7 @@ inherit_slots(PyTypeObject *type, PyTypeObject *base)
/* XXX This isn't right. If the warning is turned
into an exception, we should be communicating
the error back to the caller, but figuring out
- how to clean-up in that case is tricky. See
+ how to clean up in that case is tricky. See
issue 8627 for more. */
PyErr_Clear();
}