- Timestamp:
- Jun 9, 2016, 12:36:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk/Lib/distutils/emxccompiler.py
r775 r780 180 180 # if filename exceed 8.3, create a symlink to 8.3 pyd 181 181 if len(os.path.basename(output_filename)) > 8+1+3: 182 os.remove( output_filename) 182 try: 183 os.remove( output_filename) 184 except OSError: 185 pass 183 186 os.symlink( pyd_name8 + ".pyd", output_filename) 184 187
Note:
See TracChangeset
for help on using the changeset viewer.