[issue30022] Get rid of using EnvironmentError and IOError

2017-06-11 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: -> terry.reedy versions: +Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue30022] Get rid of using EnvironmentError and IOError

2017-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 59422a29ee3a95866c4f7e037bdfffd5768afddd by terryjreedy in branch '3.6': [3.6]bpo-30022: idlelib.run IOError -> OSError [GH-1051] (#2107) https://github.com/python/cpython/commit/59422a29ee3a95866c4f7e037bdfffd5768afddd -- _

[issue30022] Get rid of using EnvironmentError and IOError

2017-06-11 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- pull_requests: +2160 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30022] Get rid of using EnvironmentError and IOError

2017-04-16 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue30022] Get rid of using EnvironmentError and IOError

2017-04-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 55fe1ae9708d81b902b6fe8f6590e2a24b1bd4b0 by Serhiy Storchaka in branch 'master': bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) https://github.com/python/cpython/commit/55fe1ae9708d81b902b6fe8f6590e2a24b1bd4b0 -

[issue30022] Get rid of using EnvironmentError and IOError

2017-04-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: I checked the patch and it appears to be a clean search/replace. I assume that the aliases have the same diff in C as in Python. The only idlelib replacement is in run.py, where I (mistakenly) added IOError in 3.3 and 3.4 as well as in 2.7. This must have be

[issue30022] Get rid of using EnvironmentError and IOError

2017-04-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +1203 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue30022] Get rid of using EnvironmentError and IOError

2017-04-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: EnvironmentError and IOError now are aliases to OSError. But some code still use them. Proposed patch replaces all uses of EnvironmentError and IOError (except tests and scripts) with OSError. This will make the code cleaner and more uniform. -- m