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 Big Stone, eryksun, paul.moore, python-dev, roger.serwy, steve.dower, terry.reedy, tim.golden, zach.ware
Date 2016-10-28.18:28:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477679283.41.0.21707143359.issue28522@psf.upfronthosting.co.za>
In-reply-to
Content
"Lib\site-packages" is probably unnecessary because of "import site", which likely adds it in anyway.

It's very likely that WinPython doesn't actually want to specify this at all, since it also enables isolated mode, which will ignore PYTHONPATH and the current working directory. But if that's okay, you probably want::

    python36.zip
    DLLs
    Lib
    .
    import site

That should give you the same default sys.path as if the file were omitted, except for the empty entry at the start and anything in PYTHONPATH or the registry. (I figured this out by running "python -S" and looking at sys.path.)
History
Date User Action Args
2016-10-28 18:28:03steve.dowersetrecipients: + steve.dower, terry.reedy, paul.moore, tim.golden, roger.serwy, python-dev, zach.ware, eryksun, Big Stone
2016-10-28 18:28:03steve.dowersetmessageid: <1477679283.41.0.21707143359.issue28522@psf.upfronthosting.co.za>
2016-10-28 18:28:03steve.dowerlinkissue28522 messages
2016-10-28 18:28:03steve.dowercreate