Commit 50fe035d authored by Stefan Behnel's avatar Stefan Behnel

hispanic typos :)

parent a34888ed
...@@ -4280,7 +4280,7 @@ static void __Pyx_AddTraceback(char *funcname) { ...@@ -4280,7 +4280,7 @@ static void __Pyx_AddTraceback(char *funcname) {
if (!py_funcname) goto bad; if (!py_funcname) goto bad;
py_globals = PyModule_GetDict(%(GLOBALS)s); py_globals = PyModule_GetDict(%(GLOBALS)s);
if (!py_globals) goto bad; if (!py_globals) goto bad;
#if PY_VERSION_MAJOR < 3 #if PY_MAJOR_VERSION < 3
empty_string = PyString_FromStringAndSize("", 0); empty_string = PyString_FromStringAndSize("", 0);
#else #else
empty_string = PyBytes_FromStringAndSize("", 0); empty_string = PyBytes_FromStringAndSize("", 0);
......
...@@ -1172,7 +1172,7 @@ def typecast(to_type, from_type, expr_code): ...@@ -1172,7 +1172,7 @@ def typecast(to_type, from_type, expr_code):
type_conversion_predeclarations = """ type_conversion_predeclarations = """
/* Type Conversion Predeclarations */ /* Type Conversion Predeclarations */
#if PY_VERSION_MAJOR < 3 #if PY_MAJOR_VERSION < 3
#define __Pyx_PyBytes_FromString PyString_FromString #define __Pyx_PyBytes_FromString PyString_FromString
#define __Pyx_PyBytes_AsString PyString_AsString #define __Pyx_PyBytes_AsString PyString_AsString
#else #else
......
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