diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:13:55 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 11:13:55 +0000 |
commit | 585a6acfef1a03955bc2561aab7b2acfbb6bb2d4 (patch) | |
tree | cd3684ef639760f403da82b1448786ebd9c8379d /Objects/object.c | |
parent | 6568714366e8c7c7222681a5ddcc13c57b7495a2 (diff) | |
parent | ec1aa5c2a1d0848351dd9d7d2758c553f18e56b2 (diff) | |
download | cpython-git-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.tar.gz |
Merge typo fixes from 3.5
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 11b7bff43a..6fc4df1639 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -475,7 +475,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 |