diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:26:23 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:26:23 (GMT) |
commit | 9955a373a8ae5a3ac9108afc436199277fdedff7 (patch) | |
tree | 3610b83bda6f7b3731ee7790579874c0bde14ae0 /Objects/object.c | |
parent | 85b8f45515a08afd75ca38b3760defabd219a632 (diff) | |
download | cpython-9955a373a8ae5a3ac9108afc436199277fdedff7.zip cpython-9955a373a8ae5a3ac9108afc436199277fdedff7.tar.gz cpython-9955a373a8ae5a3ac9108afc436199277fdedff7.tar.bz2 |
Various minor typos in documentation and comments
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 a1a69fa..307e3ac 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -459,7 +459,7 @@ PyObject_Repr(PyObject *v) #ifdef Py_DEBUG /* PyObject_Repr() must not be called with an exception set, because it may clear it (directly or indirectly) and so the - caller looses its exception */ + caller loses its exception */ assert(!PyErr_Occurred()); #endif |