summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-04-03 08:05:07 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2006-04-03 08:05:07 (GMT)
commit93f5b93422ddfc46142186078ee0eedfcace8964 (patch)
tree830473a8f089ef26da75b54b9ee9d98bdefa6234 /Misc
parent9e5eb4ffbf2198ad5721078b4a76e7a63c0ac3c6 (diff)
downloadcpython-93f5b93422ddfc46142186078ee0eedfcace8964.zip
cpython-93f5b93422ddfc46142186078ee0eedfcace8964.tar.gz
cpython-93f5b93422ddfc46142186078ee0eedfcace8964.tar.bz2
The email module's parsedate_tz function now sets the daylight savings
flag to -1 (unknown) since it can't tell from the date whether it should be set. patch from Aldo Cortesi
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 12983c5..04b6c77 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -132,6 +132,7 @@ Jeffery Collins
Matt Conway
David M. Cooke
Greg Copeland
+Aldo Cortesi
David Costanzo
Scott Cotton
Greg Couch
diff --git a/Misc/NEWS b/Misc/NEWS
index fa162f5..cb99814 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -491,6 +491,10 @@ Extension Modules
Library
-------
+- The email module's parsedate_tz function now sets the daylight savings
+ flag to -1 (unknown) since it can't tell from the date whether it should
+ be set.
+
- Patch #624325: urlparse.urlparse() and urlparse.urlsplit() results
now sport attributes that provide access to the parts of the result.