Kaydet (Commit) 1ea4e417 authored tarafından Victor Stinner's avatar Victor Stinner

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

üst ca7b0464
......@@ -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