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: distutils.util.get_platform() should include sys.version[:3]
Type: enhancement Stage:
Components: Distutils Versions:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: bob.ippolito
Priority: normal Keywords:

Created on 2004-09-27 20:06 by bob.ippolito, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg22556 - (view) Author: Bob Ippolito (bob.ippolito) * (Python committer) Date: 2004-09-27 20:06
When dealing with systems that have multiple versions of Python 
installed, it would be nice if distutils.util.get_platform() included 
the major python version (sys.version[:3]) so that you could do:

python2.3 setup.py install
python2.4 setup.py install

and expect everything to typically work correctly.
msg22557 - (view) Author: Bob Ippolito (bob.ippolito) * (Python committer) Date: 2004-10-16 16:00
Logged In: YES 
user_id=139309

I think this was my mistake, not a bug.
History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 40958
2004-09-27 20:06:37bob.ippolitocreate