[Python-checkins] cpython: Issue #17162: Fix compilation, replace non-breaking space with an ASCII space

victor.stinner python-checkins at python.org
Tue Feb 4 09:49:30 CET 2014


http://hg.python.org/cpython/rev/eaae4008327d
changeset:   88953:eaae4008327d
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Feb 04 09:49:14 2014 +0100
summary:
  Issue #17162: Fix compilation, replace non-breaking space with an ASCII space

files:
  Objects/typeobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/typeobject.c b/Objects/typeobject.c
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -2644,7 +2644,7 @@
 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;
     }

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list