summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-07 11:13:55 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-10-07 11:13:55 +0000
commit585a6acfef1a03955bc2561aab7b2acfbb6bb2d4 (patch)
treecd3684ef639760f403da82b1448786ebd9c8379d /Python
parent6568714366e8c7c7222681a5ddcc13c57b7495a2 (diff)
parentec1aa5c2a1d0848351dd9d7d2758c553f18e56b2 (diff)
downloadcpython-git-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.tar.gz
Merge typo fixes from 3.5
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 8d2cdc2eda..f9e8ef8859 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1214,7 +1214,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
#ifdef Py_DEBUG
/* PyEval_EvalFrameEx() 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