summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-07 10:26:23 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-10-07 10:26:23 (GMT)
commit9955a373a8ae5a3ac9108afc436199277fdedff7 (patch)
tree3610b83bda6f7b3731ee7790579874c0bde14ae0 /Python
parent85b8f45515a08afd75ca38b3760defabd219a632 (diff)
downloadcpython-9955a373a8ae5a3ac9108afc436199277fdedff7.zip
cpython-9955a373a8ae5a3ac9108afc436199277fdedff7.tar.gz
cpython-9955a373a8ae5a3ac9108afc436199277fdedff7.tar.bz2
Various minor typos in documentation and comments
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 2752298..7a0cb7f 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1212,7 +1212,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
@@ -4087,7 +4087,7 @@ PyEval_CallObjectWithKeywords(PyObject *func, PyObject *arg, PyObject *kw)
#ifdef Py_DEBUG
/* PyEval_CallObjectWithKeywords() must not be called with an exception
set, because it may clear it (directly or indirectly)
- and so the caller looses its exception */
+ and so the caller loses its exception */
assert(!PyErr_Occurred());
#endif