diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-04 08:49:14 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-04 08:49:14 (GMT) |
commit | 1ea4e4174ba4051d74aedb9bdc0c020d88e3588c (patch) | |
tree | 5508f518c0e21b299d3bfe1bdbf6673672570564 /Objects | |
parent | ca7b04644ce7cbc828a28f47be421029acb38eb7 (diff) | |
download | cpython-1ea4e4174ba4051d74aedb9bdc0c020d88e3588c.zip cpython-1ea4e4174ba4051d74aedb9bdc0c020d88e3588c.tar.gz cpython-1ea4e4174ba4051d74aedb9bdc0c020d88e3588c.tar.bz2 |
Issue #17162: Fix compilation, replace non-breaking space with an ASCII space
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |