From: Victor Stinner Date: Tue, 4 Feb 2014 08:49:14 +0000 (+0100) Subject: Issue #17162: Fix compilation, replace non-breaking space with an ASCII space X-Git-Tag: v3.4.0rc1~94 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ea4e4174ba4051d74aedb9bdc0c020d88e3588c;p=thirdparty%2FPython%2Fcpython.git Issue #17162: Fix compilation, replace non-breaking space with an ASCII space --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 349a6fd0a44b..23015b2c8041 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -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; }