summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2012-06-14 02:15:26 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2012-06-14 02:15:26 (GMT)
commitc142bba2a7ead80b99aef44b3dca06e2a4be4923 (patch)
tree9ead9517a479f4d9634014fd3d1f34e8b37cc9b5 /Misc
parentf6a899fe6d39b5447abc5966a3dfe386b9d6656e (diff)
downloadcpython-c142bba2a7ead80b99aef44b3dca06e2a4be4923.zip
cpython-c142bba2a7ead80b99aef44b3dca06e2a4be4923.tar.gz
cpython-c142bba2a7ead80b99aef44b3dca06e2a4be4923.tar.bz2
Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields
in struct tm, time.struct_time objects returned by time.gmtime(), time.localtime() and time.strptime() functions now have tm_zone and tm_gmtoff attributes. Original patch by Paul Boddie.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e47766a..f3b886c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,11 @@ Core and Builtins
Library
-------
+- Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields
+ in struct tm, time.struct_time objects returned by time.gmtime(),
+ time.localtime() and time.strptime() functions now have tm_zone and
+ tm_gmtoff attributes. Original patch by Paul Boddie.
+
- Rename adjusted attribute to adjustable in time.get_clock_info() result.
- Issue #3518: Remove references to non-existent BaseManager.from_address()