summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-09-02 18:35:54 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-09-02 18:35:54 (GMT)
commitb95ec09a44d59c57a68591e35df10f583c86a1aa (patch)
tree69fb7307619cfc7f8523b2fc12c47db351ebe5fe
parent13b54a9da3085c19ccb10ebd65c67cf930af7ee7 (diff)
downloadcpython-b95ec09a44d59c57a68591e35df10f583c86a1aa.zip
cpython-b95ec09a44d59c57a68591e35df10f583c86a1aa.tar.gz
cpython-b95ec09a44d59c57a68591e35df10f583c86a1aa.tar.bz2
Repair typo in comment.
-rw-r--r--Objects/dictobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 91d2c53..b98cccf 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1703,7 +1703,7 @@ dict_init(PyObject *self, PyObject *args, PyObject *kwds)
return -1;
if (arg != NULL) {
if (PyDict_Merge(self, arg, 1) < 0) {
- /* An error like "AttibuteError: keys" is too
+ /* An error like "AttributeError: keys" is too
cryptic in this context. */
if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
PyErr_SetString(PyExc_TypeError,