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 Doug.Ransom, ned.deily, ronaldoussoren
Date 2012-10-13.00:51:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350089482.72.0.489323943295.issue16211@psf.upfronthosting.co.za>
In-reply-to
Content
There is *no* way to install Python using a python.org installer and *not* have the .py files installed.  You would have to go in and remove those files yourself.  You should be able to see the .py files yourself by looking at /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7. Most likely the IDE you are using is not using the Python instance you think it is.  To use a python.org Python, it would likely need to be reconfigured to use /usr/local/bin/python2.7 or /Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7.

If you still think there is a problem, please enumerate the steps you are performing and explain exactly what failure you are seeing.  Also, include the results of running the following in the failing configuration:

import sys
print(sys.executable)
print(sys.path)
print(sys.version)
History
Date User Action Args
2012-10-13 00:51:22ned.deilysetrecipients: + ned.deily, ronaldoussoren, Doug.Ransom
2012-10-13 00:51:22ned.deilysetmessageid: <1350089482.72.0.489323943295.issue16211@psf.upfronthosting.co.za>
2012-10-13 00:51:22ned.deilylinkissue16211 messages
2012-10-13 00:51:21ned.deilycreate