Changeset 3408
- Timestamp:
- Jun 11, 2007, 2:56:31 AM (18 years ago)
- Location:
- trunk/essentials/dev-lang/python
- Files:
-
- 3 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; -
trunk/essentials/dev-lang/python/Modules/_hotshot.c
r3394 r3408 25 25 QueryPerformanceCounter(&_temp); \ 26 26 *(P_HS_TIME) = _temp.QuadPart; } 27 27 28 28 29 29 #else … … 309 309 int ch; 310 310 char *buf; 311 311 312 312 if ((err = unpack_packed_int(self, &len, 0))) 313 313 return err; … … 1567 1567 } 1568 1568 1569 PyDoc_VAR(resolution__doc__) = 1569 PyDoc_VAR(resolution__doc__) = 1570 1570 #ifdef MS_WINDOWS 1571 1571 PyDoc_STR( … … 1608 1608 }; 1609 1609 1610 1610 1611 #ifdef __OS2__ 1611 1612 PyMODINIT_FUNC 1612 1613 #else 1613 1614 void 1614 #endif 1615 #endif 1615 1616 init_hotshot(void) 1616 1617 {
Note:
See TracChangeset
for help on using the changeset viewer.