Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f4aeb84b
Commit
f4aeb84b
authored
Feb 19, 1998
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable CHECK_IMPORT_CASE on Win32.
parent
0cf0cfba
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
PC/config.h
PC/config.h
+10
-0
No files found.
PC/config.h
View file @
f4aeb84b
...
...
@@ -195,6 +195,16 @@ typedef int pid_t;
#endif
/* !MS_WIN16 */
#endif
/* !MS_WIN32 */
#ifdef MS_WIN32
/* EXPERIMENTAL FEATURE: When CHECK_IMPORT_CASE is defined, check case of
imported modules against case of file; this causes "import String" to fail
with a NameError exception when it finds "string.py". Normally, you set
the environment variable PYTHONCASEOK (to anything) to disable this
feature; to permanently disable it, #undef it here. This only works on
case-preserving filesystems; otherwise you definitely want it off. */
#define CHECK_IMPORT_CASE
#endif
/* Fairly standard from here! */
/* Define if on AIX 3.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment