summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-05-27 20:55:27 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-05-27 20:55:27 (GMT)
commit9292ee06672e88172f6d2724eecbfd95bb69cc24 (patch)
treed5f24812db3c8aba7563c2919f0fc419332cae93 /Misc
parent3bfd0311f9cbea2e0b919689dd6076a1ade8120f (diff)
downloadcpython-9292ee06672e88172f6d2724eecbfd95bb69cc24.zip
cpython-9292ee06672e88172f6d2724eecbfd95bb69cc24.tar.gz
cpython-9292ee06672e88172f6d2724eecbfd95bb69cc24.tar.bz2
Issue #7150: Raise OverflowError if the result of adding or subtracting
timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e313acc..c27dc4a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ C-API
Library
-------
+- Issue #7150: Raise OverflowError if the result of adding or subtracting
+ timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range.
+
- Issue #6662: Fix parsing of malformatted charref (&#bad;), patch written by
Fredrik Håård