Changeset 3408


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

some adjustments.

Location:
trunk/essentials/dev-lang/python
Files:
3 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;
  • trunk/essentials/dev-lang/python/Modules/_hotshot.c

    r3394 r3408  
    2525          QueryPerformanceCounter(&_temp); \
    2626          *(P_HS_TIME) = _temp.QuadPart; }
    27          
     27
    2828
    2929#else
     
    309309    int ch;
    310310    char *buf;
    311    
     311
    312312    if ((err = unpack_packed_int(self, &len, 0)))
    313313        return err;
     
    15671567}
    15681568
    1569 PyDoc_VAR(resolution__doc__) = 
     1569PyDoc_VAR(resolution__doc__) =
    15701570#ifdef MS_WINDOWS
    15711571PyDoc_STR(
     
    16081608};
    16091609
     1610
    16101611#ifdef __OS2__
    16111612PyMODINIT_FUNC
    16121613#else
    16131614void
    1614 #endif 
     1615#endif
    16151616init_hotshot(void)
    16161617{
Note: See TracChangeset for help on using the changeset viewer.