Changeset 3408 for trunk/essentials/dev-lang/python/Lib
- Timestamp:
- Jun 11, 2007, 2:56:31 AM (18 years ago)
- Location:
- trunk/essentials/dev-lang/python/Lib/distutils
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/dev-lang/python/Lib/distutils/ccompiler.py
r3402 r3408 1026 1026 def debug_print (self, msg): 1027 1027 from distutils.debug import DEBUG 1028 #if DEBUG:1028 if DEBUG: 1029 1029 print msg 1030 1030 … … 1060 1060 ('cygwin.*', 'unix'), 1061 1061 ('os2knix', 'unix'), 1062 #('os2emx', 'emx'), - revert later.1062 ('os2emx', 'emx'), 1063 1063 1064 1064 # OS name mappings -
trunk/essentials/dev-lang/python/Lib/distutils/sysconfig.py
r3367 r3408 462 462 def _init_os2(): 463 463 """Initialize the module as appropriate for OS/2""" 464 # g = {} - want all the posix stuff too please. (cflags etc) 464 # g = {} - want all the posix stuff too please. (cflags etc) - @todo put this in a IF test. 465 465 _init_posix(); 466 466 g = _config_vars;
Note:
See TracChangeset
for help on using the changeset viewer.