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 ned.deily
Recipients blarsen, dino.viehland, docs@python, eli.bendersky, eric.araujo, eric.snow, eryksun, flox, ned.deily, petri.lehtinen, pitrou, pjenvey, python-dev, ronaldoussoren, schmir, vstinner
Date 2016-07-12.02:39:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468291168.33.0.0513988842836.issue13402@psf.upfronthosting.co.za>
In-reply-to
Content
@blarsen, and there's something strange about your example.  '-m' won't work with a real python executable, presumably you meant '-c'.  And judging from the paths involved, I'm guessing you are using MacPorts on OS X.  With either MacPorts or any other OS X framework build, you wouldn't see results like that with -c.

 ../bin/python3.5 -c 'import sys; print(sys.executable)'
/opt/local/bin/python3.5
../bin/python2.7 -c 'import sys; print(sys.executable)'
/opt/local/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python

So I'm guessing what's in ../bin/python3.7 and ../bin/python3.5 is something other than the normal python bootstrap binaries.
History
Date User Action Args
2016-07-12 02:39:28ned.deilysetrecipients: + ned.deily, ronaldoussoren, pitrou, vstinner, pjenvey, schmir, eric.araujo, dino.viehland, eli.bendersky, flox, docs@python, python-dev, eric.snow, petri.lehtinen, eryksun, blarsen
2016-07-12 02:39:28ned.deilysetmessageid: <1468291168.33.0.0513988842836.issue13402@psf.upfronthosting.co.za>
2016-07-12 02:39:28ned.deilylinkissue13402 messages
2016-07-12 02:39:27ned.deilycreate