diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-19 13:45:30 +0200 |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-19 13:45:30 +0200 |
commit | e3011323dd351c11919da6e4c6acfaa9aadc8b71 (patch) | |
tree | 1bb3e04824ce7e0d7290ee6031977624b416ad0c /Doc/faq/library.rst | |
parent | 1f707d0bcd1dcf828587a8fd4a05992597bfa0f8 (diff) | |
download | cpython-e3011323dd351c11919da6e4c6acfaa9aadc8b71.tar.gz |
Add versionchanged tag to faq (useless btw because changed text is commented out)
Diffstat (limited to 'Doc/faq/library.rst')
-rw-r--r-- | Doc/faq/library.rst | 4 |
1 files changed, 4 insertions, 0 deletions
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 ======= |