Issue #17162: Fix compilation, replace non-breaking space with an ASCII space
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 4 Feb 2014 08:49:14 +0000 (09:49 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 4 Feb 2014 08:49:14 +0000 (09:49 +0100)
Objects/typeobject.c

index 349a6fd0a44beb4b0772791b5ff57b094e9b4fc8..23015b2c804134111260782012fd351e4dbd00bc 100644 (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;
     }