This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: indentation error in unixcompiler.py
Type: Stage:
Components: Distutils Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: jackjansen, siggyf
Priority: normal Keywords:

Created on 2003-06-01 10:26 by siggyf, last changed 2022-04-10 16:08 by admin. This issue is now closed.

Messages (2)
msg16222 - (view) Author: Fedor Baart (siggyf) Date: 2003-06-01 10:26
in  the function runtime_library_dir_option(self, dir) in module  
distutils/unixcompiler the indentation of the if elif is incorrect.  
The "elif sys.platform[:5] == "hp-ux":" is not in line with "if 
sys.platform[:6] == "darwin":" 
 
 
msg16223 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2003-06-01 19:28
Logged In: YES 
user_id=45365

Fixed in unixccompiler.py rev 1.54. Thanks for the report!
History
Date User Action Args
2022-04-10 16:08:59adminsetgithub: 38575
2003-06-01 10:26:12siggyfcreate