[Python-checkins] r46449 - python/branches/sreifschneider-newnewexcept/Objects/exceptions.c

tim.peters python-checkins at python.org
Sat May 27 13:41:47 CEST 2006


Author: tim.peters
Date: Sat May 27 13:41:47 2006
New Revision: 46449

Modified:
   python/branches/sreifschneider-newnewexcept/Objects/exceptions.c
Log:
Typo repair.


Modified: python/branches/sreifschneider-newnewexcept/Objects/exceptions.c
==============================================================================
--- python/branches/sreifschneider-newnewexcept/Objects/exceptions.c	(original)
+++ python/branches/sreifschneider-newnewexcept/Objects/exceptions.c	Sat May 27 13:41:47 2006
@@ -772,7 +772,7 @@
        error code. */
     errcode = PyInt_AsLong(self->myerrno);
     if (errcode == -1 && PyErr_Occurred()) {
-        if (PyErr_ExceptionMatches(PyExc_TypeError)
+        if (PyErr_ExceptionMatches(PyExc_TypeError))
             /* give a clearer error message */
             PyErr_SetString(PyExc_TypeError, "errno has to be an integer");
         goto failed;


More information about the Python-checkins mailing list