diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-05-31 20:23:33 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-05-31 20:23:33 (GMT) |
commit | 3f8dae73c74d2a0a0aa55c1669f73e0d6ab827e1 (patch) | |
tree | 0c4136000200dbd0d7f388580a12fd0972d73bd3 /Objects/object.c | |
parent | a407300cd776309176087866698c580329f9fc1c (diff) | |
download | cpython-3f8dae73c74d2a0a0aa55c1669f73e0d6ab827e1.zip cpython-3f8dae73c74d2a0a0aa55c1669f73e0d6ab827e1.tar.gz cpython-3f8dae73c74d2a0a0aa55c1669f73e0d6ab827e1.tar.bz2 |
Fix typo
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 3207d8a..6e72c24 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -650,7 +650,7 @@ do_cmp(PyObject *v, PyObject *w) But if it returns undefined we fall through. */ if (c != 2) return c; - /* Else fall throug to try_rich_to_3way_compare() */ + /* Else fall through to try_rich_to_3way_compare() */ } else return adjust_tp_compare(c); |