summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-10-14 17:03:51 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-10-14 17:03:51 (GMT)
commit1bcbaab15a38ce23cfa4e5ddfee507b75b7cc0b4 (patch)
tree92b95c8558e6a10a2545a7f7c1517e8d84466f66 /Misc/NEWS
parent5bc4fa7a4947a39cbfdd3dd2ea1019bfa0f93085 (diff)
downloadcpython-1bcbaab15a38ce23cfa4e5ddfee507b75b7cc0b4.zip
cpython-1bcbaab15a38ce23cfa4e5ddfee507b75b7cc0b4.tar.gz
cpython-1bcbaab15a38ce23cfa4e5ddfee507b75b7cc0b4.tar.bz2
Issue 9183: Intern UTC timezone.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7fb305c..c09e24f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,9 @@ Core and Builtins
Library
-------
+- Issue 9183: ``datetime.timezone(datetime.timedelta(0))`` will now
+ return the same instance as ``datetime.timezone.utc``.
+
- Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module,
where supported by the system. Patch by Nikita Vetoshkin.