diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-24 17:00:28 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-24 17:00:28 (GMT) |
commit | 316b16de13bef1d6e649bc12456bdae34d685d91 (patch) | |
tree | 4e53e3667b2c4a230c98abc47d2e44db49f1903a /Misc | |
parent | e1d24f7ec3d3d6011c790fdc5088ed5dde81723f (diff) | |
parent | 45cff66cf63593695ff5324d3765d8a1a1125adf (diff) | |
download | cpython-316b16de13bef1d6e649bc12456bdae34d685d91.zip cpython-316b16de13bef1d6e649bc12456bdae34d685d91.tar.gz cpython-316b16de13bef1d6e649bc12456bdae34d685d91.tar.bz2 |
(Merge 3.4) Issue #16133: The asynchat.async_chat.handle_read() method now
ignores BlockingIOError exceptions. Initial patch written by Xavier de Gaye.
Document also in asyncore documentation that recv() may raise BlockingIOError.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -108,6 +108,9 @@ Core and Builtins Library ------- +- Issue #16133: The asynchat.async_chat.handle_read() method now ignores + BlockingIOError exceptions. + - Issue #19884: readline: Disable the meta modifier key if stdout is not a terminal to not write the ANSI sequence "\033[1034h" into stdout. This sequence is used on some terminal (ex: TERM=xterm-256color") to enable |