#1194222: make parsedate always return RFC2822 four character years.
Two character years are now converted to four character years using
the Posix standard rule (<68 == 2000, >=68==1900). This makes the
parsed date RFC2822 compliant even if the input is not.
Patch and test by Jeffrey Finkelstein.
diff --git a/Misc/ACKS b/Misc/ACKS
index d1fc416..ef92941 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -260,6 +260,7 @@
Sebastian Fernandez
Vincent Fiack
Tomer Filiba
+Jeffrey Finkelstein
Russell Finn
Nils Fischbeck
Frederik Fix
diff --git a/Misc/NEWS b/Misc/NEWS
index f7c8cc0..1cb67cc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -126,6 +126,9 @@
Library
-------
+- Issue #1194222: email.utils.parsedate now returns RFC2822 compliant four
+ character years even if the message contains RFC822 two character years.
+
- Issue #8750: Fixed MutableSet's methods to correctly handle reflexive
operations on its self, namely x -= x and x ^= x.