From: Andrew Svetlov Date: Wed, 19 Dec 2012 11:45:30 +0000 (+0200) Subject: Add versionchanged tag to faq (useless btw because changed text is commented out) X-Git-Tag: v3.4.0a1~1815 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a045cb93bded97220422a957941bb68341429d1;p=python Add versionchanged tag to faq (useless btw because changed text is commented out) --- diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index 804346023f..6a2682fc38 100644 --- a/Doc/faq/library.rst +++ b/Doc/faq/library.rst @@ -224,6 +224,10 @@ using curses, but curses is a fairly large module to learn. and modify them for non-blocking mode. Since reading stdin when it is empty results in an :exc:`OSError`, this error is caught and ignored. + .. versionchanged:: 3.3 + *sys.stdin.read* used to raise :exc:`IOError`. Starting from Python 3.3 + :exc:`IOError` is alias for :exc:`OSError`. + Threads =======