diff options
author | Raymond Hettinger <python@rcn.com> | 2004-03-21 17:35:06 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-03-21 17:35:06 (GMT) |
commit | 8183fa46a9b81b74b63fb5b0e98d632b060f8eab (patch) | |
tree | 44b1fb7c7f9b5bf1104e5f7ed854b6fbd2581aec /Objects/object.c | |
parent | 660252047347d1effbe00162ff990fc7a57d4d2a (diff) | |
download | cpython-8183fa46a9b81b74b63fb5b0e98d632b060f8eab.zip cpython-8183fa46a9b81b74b63fb5b0e98d632b060f8eab.tar.gz cpython-8183fa46a9b81b74b63fb5b0e98d632b060f8eab.tar.bz2 |
Fix typo in comment.
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index bda27e0..ba9a1d9 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -895,7 +895,7 @@ PyObject_RichCompareBool(PyObject *v, PyObject *w, int op) } /* Set of hash utility functions to help maintaining the invariant that - iff a==b then hash(a)==hash(b) + if a==b then hash(a)==hash(b) All the utility functions (_Py_Hash*()) return "-1" to signify an error. */ |