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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8a045cb93bded97220422a957941bb68341429d1;p=thirdparty%2FPython%2Fcpython.git 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 804346023f81..6a2682fc381c 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 =======