diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-10-17 13:40:57 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-10-17 13:40:57 (GMT) |
commit | 240f86d7ddbeb3800d39a6d2e6e7a7d1f0c49799 (patch) | |
tree | ec61711162ebf82864716dee27119461c312ba58 /Misc/NEWS | |
parent | 1eb509a585c402faa76da85095f1bdae5cd54ef2 (diff) | |
download | cpython-240f86d7ddbeb3800d39a6d2e6e7a7d1f0c49799.zip cpython-240f86d7ddbeb3800d39a6d2e6e7a7d1f0c49799.tar.gz cpython-240f86d7ddbeb3800d39a6d2e6e7a7d1f0c49799.tar.bz2 |
Close #19266: contextlib.ignore -> contextlib.suppress
Patch by Zero Piraeus.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -42,6 +42,11 @@ Core and Builtins Library ------- +- Issue #19266: Rename the new-in-3.4 ``contextlib.ignore`` context manager + to ``contextlib.suppress`` in order to be more consistent with existing + descriptions of that operation elsewhere in the language and standard + library documentation (Patch by Zero Piraeus) + - Issue #18891: Completed the new email package (provisional) API additions by adding new classes EmailMessage, MIMEPart, and ContentManager. |