[Python-checkins] cpython: Fix typo in comment.

eric.smith python-checkins at python.org
Sat Aug 8 00:50:22 CEST 2015


https://hg.python.org/cpython/rev/2028c413929b
changeset:   97318:2028c413929b
user:        Eric V. Smith <eric at trueblade.com>
date:        Fri Aug 07 18:50:24 2015 -0400
summary:
  Fix typo in comment.

files:
  Objects/abstract.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/abstract.c b/Objects/abstract.c
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -2131,7 +2131,7 @@
 
     /* PyObject_Call() 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());
 
     call = func->ob_type->tp_call;

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list