(original) (raw)
changeset: 88953:eaae4008327d user: Victor Stinner victor.stinner@gmail.com date: Tue Feb 04 09:49:14 2014 +0100 files: Objects/typeobject.c description: Issue #17162: Fix compilation, replace non-breaking space with an ASCII space diff -r 655d7a55c165 -r eaae4008327d Objects/typeobject.c --- a/Objects/typeobject.c Tue Feb 04 09:33:05 2014 +0100 +++ b/Objects/typeobject.c Tue Feb 04 09:49:14 2014 +0100 @@ -2644,7 +2644,7 @@ void * PyType_GetSlot(PyTypeObject *type, int slot) { - if (!PyType_HasFeature(type, Py_TPFLAGS_HEAPTYPE)) { + if (!PyType_HasFeature(type, Py_TPFLAGS_HEAPTYPE)) { PyErr_BadInternalCall(); return NULL; } /victor.stinner@gmail.com