We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d9fa7f commit 7a15bddCopy full SHA for 7a15bdd
pandas/parser.pyx
@@ -57,6 +57,9 @@ cdef extern from "headers/stdint.h":
57
enum: INT64_MAX
58
enum: INT64_MIN
59
60
+cdef extern from "headers/portable.h":
61
+ pass
62
+
63
try:
64
basestring
65
except NameError:
pandas/src/headers/portable.h
@@ -0,0 +1,8 @@
1
+#ifndef _PANDAS_PORTABLE_H_
2
+#define _PANDAS_PORTABLE_H_
3
4
+#if defined(_MSC_VER)
5
+#define strcasecmp( s1, s2 ) _stricmp( s1, s2 )
6
+#endif
7
8
0 commit comments