projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca7b046
)
Issue #17162: Fix compilation, replace non-breaking space with an ASCII space
author
Victor Stinner
<victor.stinner@gmail.com>
Tue, 4 Feb 2014 08:49:14 +0000
(09:49 +0100)
committer
Victor Stinner
<victor.stinner@gmail.com>
Tue, 4 Feb 2014 08:49:14 +0000
(09:49 +0100)
Objects/typeobject.c
patch
|
blob
|
history
diff --git
a/Objects/typeobject.c
b/Objects/typeobject.c
index 349a6fd0a44beb4b0772791b5ff57b094e9b4fc8..23015b2c804134111260782012fd351e4dbd00bc 100644
(file)
--- 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;
}