summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-07 11:01:47 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-10-07 11:01:47 (GMT)
commit3f930dcd8725078c1655f09ca9bea0889e999fd6 (patch)
tree3b4079f251261009de434a8a42904a1438b50b94 /Python/ceval.c
parent397625e43280c1dec19af59c53704e0d95b557d5 (diff)
parent9955a373a8ae5a3ac9108afc436199277fdedff7 (diff)
downloadcpython-3f930dcd8725078c1655f09ca9bea0889e999fd6.zip
cpython-3f930dcd8725078c1655f09ca9bea0889e999fd6.tar.gz
cpython-3f930dcd8725078c1655f09ca9bea0889e999fd6.tar.bz2
Merge typo fixes from 3.4 into 3.5
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 8d2cdc2..f9e8ef8 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