Commit 213f5c77 authored by William Stein's avatar William Stein

Fixed some typos reported by Helmut Jarausch

parent e449a8b2
...@@ -2593,7 +2593,7 @@ utility_function_predeclarations = \ ...@@ -2593,7 +2593,7 @@ utility_function_predeclarations = \
#ifdef __GNUC__ #ifdef __GNUC__
#define INLINE __inline__ #define INLINE __inline__
#elif _WIN32 #elif _WIN32
#define INILNE __inline #define INLINE __inline
#else #else
#define INLINE #define INLINE
#endif #endif
...@@ -2603,7 +2603,7 @@ typedef struct {PyObject **p; char *s;} __Pyx_InternTabEntry; /*proto*/ ...@@ -2603,7 +2603,7 @@ typedef struct {PyObject **p; char *s;} __Pyx_InternTabEntry; /*proto*/
typedef struct {PyObject **p; char *s; long n;} __Pyx_StringTabEntry; /*proto*/ typedef struct {PyObject **p; char *s; long n;} __Pyx_StringTabEntry; /*proto*/
#define __Pyx_PyBool_FromLong(b) ((b) ? (Py_INCREF(Py_True), Py_True) : (Py_INCREF(Py_False), Py_False)) #define __Pyx_PyBool_FromLong(b) ((b) ? (Py_INCREF(Py_True), Py_True) : (Py_INCREF(Py_False), Py_False))
static INILNE int __Pyx_PyObject_IsTrue(PyObject* x) { static INLINE int __Pyx_PyObject_IsTrue(PyObject* x) {
if (x == Py_True) return 1; if (x == Py_True) return 1;
else if (x == Py_False) return 0; else if (x == Py_False) return 0;
else return PyObject_IsTrue(x); else return PyObject_IsTrue(x);
......
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