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.

Author steve.dower
Recipients eryksun, ezio.melotti, paul.moore, steve.dower, terry.reedy, tim.golden, vstinner, zach.ware
Date 2017-05-22.23:40:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495496439.83.0.288935569175.issue30405@psf.upfronthosting.co.za>
In-reply-to
Content
My thinking was basically to use an algorithm like this:

    if sys.argv[1].startswith('-'):
        company, _, tag = sys.argv[1][1:].rpartition('\')
        if company:
            # look for Tag under Company
        else:
            # look for tag under PythonCore, then other companies

We'd need special handling for Python versions before 3.5 (because of the "-32" change), and possibly for the "-64" suffix as well. But in general, for unique tags you should only have to specify the tag, and the company is used to disambiguate/filter if desired.

SysVersion/SysArchitecture/Version are purely informational according to the PEP (and certainly by intent, if the wording happens to be unclear).
History
Date User Action Args
2017-05-22 23:40:39steve.dowersetrecipients: + steve.dower, terry.reedy, paul.moore, vstinner, tim.golden, ezio.melotti, zach.ware, eryksun
2017-05-22 23:40:39steve.dowersetmessageid: <1495496439.83.0.288935569175.issue30405@psf.upfronthosting.co.za>
2017-05-22 23:40:39steve.dowerlinkissue30405 messages
2017-05-22 23:40:39steve.dowercreate