Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cf0cfb commit f4aeb84Copy full SHA for f4aeb84
1 file changed
PC/config.h
@@ -195,6 +195,16 @@ typedef int pid_t;
195
#endif /* !MS_WIN16 */
196
#endif /* !MS_WIN32 */
197
198
+#ifdef MS_WIN32
199
+/* EXPERIMENTAL FEATURE: When CHECK_IMPORT_CASE is defined, check case of
200
+ imported modules against case of file; this causes "import String" to fail
201
+ with a NameError exception when it finds "string.py". Normally, you set
202
+ the environment variable PYTHONCASEOK (to anything) to disable this
203
+ feature; to permanently disable it, #undef it here. This only works on
204
+ case-preserving filesystems; otherwise you definitely want it off. */
205
+#define CHECK_IMPORT_CASE
206
+#endif
207
+
208
/* Fairly standard from here! */
209
210
/* Define if on AIX 3.
0 commit comments