Ignore:
Timestamp:
Jun 11, 2007, 2:56:31 AM (18 years ago)
Author:
bird
Message:

some adjustments.

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  
    10261026    def debug_print (self, msg):
    10271027        from distutils.debug import DEBUG
    1028         # if DEBUG:
     1028        if DEBUG:
    10291029        print msg
    10301030
     
    10601060    ('cygwin.*', 'unix'),
    10611061    ('os2knix', 'unix'),
    1062     #('os2emx', 'emx'), - revert later.
     1062    ('os2emx', 'emx'),
    10631063
    10641064    # OS name mappings
  • trunk/essentials/dev-lang/python/Lib/distutils/sysconfig.py

    r3367 r3408  
    462462def _init_os2():
    463463    """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.
    465465    _init_posix();
    466466    g = _config_vars;
Note: See TracChangeset for help on using the changeset viewer.