[issue43927] Remove IOError references from the tutorial

2021-05-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue43927] Remove IOError references from the tutorial

2021-05-21 Thread miss-islington
miss-islington added the comment: New changeset e10bd76d47dbb4ac296017b963c308d287a9d2f2 by Miss Islington (bot) in branch '3.9': bpo-43927: Change 'IOError' to 'OSError' (GH-26289) https://github.com/python/cpython/commit/e10bd76d47dbb4ac296017b963c308d287a9d2f2 --

[issue43927] Remove IOError references from the tutorial

2021-05-21 Thread miss-islington
miss-islington added the comment: New changeset 150bc1f4aa67226fb05fb29032375c203252a538 by Miss Islington (bot) in branch '3.10': bpo-43927: Change 'IOError' to 'OSError' (GH-26289) https://github.com/python/cpython/commit/150bc1f4aa67226fb05fb29032375c203252a538 --

[issue43927] Remove IOError references from the tutorial

2021-05-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +24898 pull_request: https://github.com/python/cpython/pull/26294 ___ Python tracker ___

[issue43927] Remove IOError references from the tutorial

2021-05-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +24897 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26293 ___ Python tracker

[issue43927] Remove IOError references from the tutorial

2021-05-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: IOError is a back-compatibility synonym for OSError. I will eliminate the last use from all 3 versions. The change to the previous example was done by 2 people who did not backport to 3.9 and I will not bother with that. Future versions are already

[issue43927] Remove IOError references from the tutorial

2021-05-21 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch nosy: +terry.reedy nosy_count: 2.0 -> 3.0 pull_requests: +24893 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26289 ___ Python tracker

[issue43927] Remove IOError references from the tutorial

2021-04-23 Thread Tim Huegerich
New submission from Tim Huegerich : Although IOError has been merged into OSError since version 3.3, Section 8.5 of the Tutorial still uses it in examples. The Python 9.4 version of the tutorial features an example raising an IOError, which is then output as OSError, raising potential