summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS17
1 files changed, 16 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2a6f24f239..4fb4b3f640 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,8 +27,19 @@ 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
+ support of 8 bit characters.
+
+- Issue #21888: plistlib's load() and loads() now work if the fmt parameter is
+ specified.
+
- Issue #21044: tarfile.open() now handles fileobj with an integer 'name'
- attribute. Based on patch by Martin Panter.
+ attribute. Based on patch by Antoine Pietri.
- Issue #21867: Prevent turtle crash due to invalid undo buffer size.
@@ -206,6 +217,10 @@ IDLE
Tests
-----
+- Issue #22002: Added ``load_package_tests`` function to test.support and used
+ it to implement/augment test discovery in test_asyncio, test_email,
+ test_importlib, test_json, and test_tools.
+
- Issue #21976: Fix test_ssl to accept LibreSSL version strings. Thanks
to William Orr.