summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2005-02-10 20:48:03 (GMT)
committerBrett Cannon <bcannon@gmail.com>2005-02-10 20:48:03 (GMT)
commit438024258078d46e76c55cbf35d387725034be19 (patch)
tree6bdbf92db766140af306888681351d378a992992 /Misc
parent64d904b715b1cf6a29bfa72a72aeb6a3e72eac5a (diff)
downloadcpython-438024258078d46e76c55cbf35d387725034be19.zip
cpython-438024258078d46e76c55cbf35d387725034be19.tar.gz
cpython-438024258078d46e76c55cbf35d387725034be19.tar.bz2
Modified test for tzset to not rely on tm->tm_zone's existence. Also added
sanity checks on tzname if HAVE_TZNAME defined. Closes bug #1096244. Thanks Gregory Bond.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 19e1ded..410b405 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -66,6 +66,7 @@ Finn Bock
Paul Boddie
Matthew Boedicker
David Bolen
+Gregory Bond
Jurjen Bos
Peter Bosch
Eric Bouck
diff --git a/Misc/NEWS b/Misc/NEWS
index 9d3e9c0..6692fab 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -161,6 +161,11 @@ Build
``-L/opt/local/lib`` for DarwinPorts) and CPPFLAGS (``-I/sw/include`` for
Fink, ``-I/opt/local/include`` for DarwinPorts).
+- Test in configure.in that checks for tzset no longer dependent on tm->tm_zone
+ to exist in the struct (not required by either ISO C nor the UNIX 2 spec).
+ Tests for sanity in tzname when HAVE_TZNAME defined were also defined.
+ Closes bug #1096244. Thanks Gregory Bond.
+
C API
-----