Closed
Description
Bug report
While working on some Windows-related typeshed PRs, I've noticed that some places in docs are very clear about this change. For example:
.. versionchanged:: 3.3
:exc:`IOError` used to be raised; it is now an alias of :exc:`OSError`.
It is clear that OSError
is the same as IOError
now.
But, there are several places where it is not clear. Example:
cpython/Doc/library/gettext.rst
Lines 165 to 170 in 92ca90b
It might be confusing: people might think that right now OSError
and IOError
are different.
Let's add notes about explicit alias to several places that miss it.