summaryrefslogtreecommitdiffstats
path: root/Doc/faq
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-19 11:45:30 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-19 11:45:30 (GMT)
commit8a045cb93bded97220422a957941bb68341429d1 (patch)
tree646bc15991d59822f352dd514f3a608b4622ad4e /Doc/faq
parentf23e3f7ad200d571de55b3b429f14c8704d50c48 (diff)
downloadcpython-8a045cb93bded97220422a957941bb68341429d1.zip
cpython-8a045cb93bded97220422a957941bb68341429d1.tar.gz
cpython-8a045cb93bded97220422a957941bb68341429d1.tar.bz2
Add versionchanged tag to faq (useless btw because changed text is commented out)
Diffstat (limited to 'Doc/faq')
-rw-r--r--Doc/faq/library.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst
index 8043460..6a2682f 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
=======