[issue20869] IDLE lib error in IOBinding.py

2014-03-09 Thread Domenico Mustara
Domenico Mustara added the comment: Is idle-python2.7_2.7.5-8ubuntu3.1_all.deb the latest package? I downloaded it from saucy and saucy-updates repository via packages.ubuntu.com. In both cases the error is still there. I don't want to be annoying but I would like you to decompress the

[issue20869] IDLE lib error in IOBinding.py

2014-03-09 Thread R. David Murray
R. David Murray added the comment: That's an Ubuntu packaging issue, not a Python issue. You should check with Ubuntu about it. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20869 ___

[issue20869] IDLE lib error in IOBinding.py

2014-03-08 Thread Domenico Mustara
New submission from Domenico Mustara: Not a new issue, many Python users have already written about this error. In line 128 of IOBinding.py file, please change 'str = str.split(\n, 2)[:2] to lst = str.split(\n, 2)[:2]. This error prevents IDLE from working correctly when a .py file is loaded.

[issue20869] IDLE lib error in IOBinding.py

2014-03-08 Thread R. David Murray
R. David Murray added the comment: Indeed it has been reported before, and fixed. (It's a little hard to find the issue by searching the tracker, though.) Issue 19426. -- nosy: +r.david.murray resolution: - duplicate stage: - committed/rejected status: open - closed superseder: -

[issue20869] IDLE lib error in IOBinding.py

2014-03-08 Thread Ned Deily
Ned Deily added the comment: More specifically, the bug that causes the problem was first released in the 2.7.6 release candidate 1 (pre-release, 2013-10-26) and fixed in the official 2.7.6 final release (2013-11-10). So it is somewhat surprising that you would continually re-encounter it.