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 Jerry.Barrington, Schiefna, ned.deily
Date 2013-11-03.21:27:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383514025.86.0.99228876082.issue19484@psf.upfronthosting.co.za>
In-reply-to
Content
P.S. If you feel comfortable with using the command line, you *could* install the fix for Issue19426 yourself into 2.7.6rc1 if you can't wait for the final release.  For the OS X python.org installers, something like this should work from a user login with administrator privileges (sudo may ask for your password):

cd ~/Downloads
curl -O http://hg.python.org/cpython/raw-file/7fde94ad5df4/Lib/idlelib/IOBinding.py
cd /Library/Frameworks/Python.framework/Versions/2.7
cd ./lib/python2.7/idlelib
diff ~/Downloads/IOBinding.py ./IOBinding.py
sudo cp -p ./IOBinding.py ./IOBinding.py.ORIGINAL
sudo cp ~/Downloads/IOBinding.py ./IOBinding.py
sudo rm -f ./IOBinding.pyc ./IOBinding.pyo
sudo chmod 664 ./IOBinding.py

The output from the diff command should look like this:

$ diff ~/Downloads/IOBinding.py IOBinding.py
128c128
<     lst = str.split("\n", 2)[:2]
---
>     str = str.split("\n", 2)[:2]
History
Date User Action Args
2013-11-03 21:27:05ned.deilysetrecipients: + ned.deily, Schiefna, Jerry.Barrington
2013-11-03 21:27:05ned.deilysetmessageid: <1383514025.86.0.99228876082.issue19484@psf.upfronthosting.co.za>
2013-11-03 21:27:05ned.deilylinkissue19484 messages
2013-11-03 21:27:05ned.deilycreate