Issue #17162: Fix compilation, replace non-breaking space with an ASCII space

This commit is contained in:
Victor Stinner 2014-02-04 09:49:14 +01:00
parent ca7b04644c
commit 1ea4e4174b

View file

@ -2644,7 +2644,7 @@ PyType_FromSpec(PyType_Spec *spec)
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;
}