[Patches] Small typo in ceval.c

Thomas Heller thomas.heller@ion-tof.com
Fri, 31 Mar 2000 15:02:34 +0200


*** ceval.c Fri Mar 31 14:58:48 2000
--- ceval.patched.c Fri Mar 31 15:00:18 2000
***************
*** 2774,2780 ****
   }
   if (!PyString_Check(name)) {
    PyErr_SetString(PyExc_SystemError,
!     "build_class witn non-string name");
    return NULL;
   }
   n = PyTuple_Size(bases);
--- 2774,2780 ----
   }
   if (!PyString_Check(name)) {
    PyErr_SetString(PyExc_SystemError,
!     "build_class with non-string name");
    return NULL;
   }
   n = PyTuple_Size(bases);

Disclaimer:

I confirm that, to the best of my knowledge and belief, this
contribution is free of any claims of third parties under
copyright, patent or other rights or interests ("claims").  To
the extent that I have any such claims, I hereby grant to CNRI a
nonexclusive, irrevocable, royalty-free, worldwide license to
reproduce, distribute, perform and/or display publicly, prepare
derivative versions, and otherwise use this contribution as part
of the Python software and its related documentation, or any
derivative versions thereof, at no cost to CNRI or its licensed
users, and to authorize others to do so.

I acknowledge that CNRI may, at its sole discretion, decide
whether or not to incorporate this contribution in the Python
software and its related documentation.  I further grant CNRI
permission to use my name and other identifying information
provided to CNRI by me for use in connection with the Python
software and its related documentation.

Thomas Heller