From 1ea4e4174ba4051d74aedb9bdc0c020d88e3588c Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 4 Feb 2014 09:49:14 +0100 Subject: Issue #17162: Fix compilation, replace non-breaking space with an ASCII space --- Objects/typeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 349a6fd..23015b2 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; } -- cgit v0.12