summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.3.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2012-03-13 23:39:29 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2012-03-13 23:39:29 (GMT)
commitecc6e6613f8c1853830aa25a140c2d790bd330d5 (patch)
treee48651ca70e393b76cf48e5e6a542de1c412195b /Doc/whatsnew/3.3.rst
parentb2a37733017c4a469147d00d539e5313afc19340 (diff)
downloadcpython-ecc6e6613f8c1853830aa25a140c2d790bd330d5.zip
cpython-ecc6e6613f8c1853830aa25a140c2d790bd330d5.tar.gz
cpython-ecc6e6613f8c1853830aa25a140c2d790bd330d5.tar.bz2
Fix doc of datetime.date*.*fromtimestamp() methods
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r--Doc/whatsnew/3.3.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 26c42b5..7392e70 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1123,6 +1123,11 @@ Porting Python code
with sys.platform.startswith('linux'), or directly sys.platform == 'linux' if
you don't need to support older Python versions.
+* :issue:`13847`, :issue:`14180`: :mod:`time` and :mod:`datetime`:
+ :exc:`OverflowError` is now raised instead of :exc:`ValueError` if a
+ timestamp is out of range. :exc:`OSError` is now raised if C functions
+ :c:func:`gmtime` or :c:func:`localtime` failed.
+
Porting C code
--------------