Commit 349abf15 authored by Victor Stinner's avatar Victor Stinner

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

parent f7a80956
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment