mirror of
https://github.com/python/cpython.git
synced 2025-07-22 18:55:22 +00:00
Issue #17162: Fix compilation, replace non-breaking space with an ASCII space
This commit is contained in:
parent
ca7b04644c
commit
1ea4e4174b
1 changed files with 1 additions and 1 deletions
|
@ -2644,7 +2644,7 @@ PyType_FromSpec(PyType_Spec *spec)
|
||||||
void *
|
void *
|
||||||
PyType_GetSlot(PyTypeObject *type, int slot)
|
PyType_GetSlot(PyTypeObject *type, int slot)
|
||||||
{
|
{
|
||||||
if (!PyType_HasFeature(type, Py_TPFLAGS_HEAPTYPE)) {
|
if (!PyType_HasFeature(type, Py_TPFLAGS_HEAPTYPE)) {
|
||||||
PyErr_BadInternalCall();
|
PyErr_BadInternalCall();
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue