]> granicus.if.org Git - python/commitdiff
bpo-30302: Update WhatsNew and documentation. (#2929)
authorUtkarsh Upadhyay <mail@musicallyut.in>
Fri, 28 Jul 2017 12:42:56 +0000 (14:42 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 28 Jul 2017 12:42:56 +0000 (14:42 +0200)
* Update 'Porting to .37' section.

* Fix a minor example in the doc.

Doc/library/datetime.rst
Doc/whatsnew/3.7.rst

index 625e1590a87b84364e112ee0e906c889da8d9dd8..3880c2eb0b79f02392d41be5bac43c25456744f0 100644 (file)
@@ -313,7 +313,7 @@ Notes:
   unusual results for negative timedeltas.  For example:
 
   >>> timedelta(hours=-5)
-  datetime.timedelta(-1, 68400)
+  datetime.timedelta(days=-1, seconds=68400)
   >>> print(_)
   -1 day, 19:00:00
 
index 023d0a1b238089d9134e3c8b32bba4104ec11854..21e9c568ae4241901043df892130d012f368d732 100644 (file)
@@ -455,6 +455,9 @@ Changes in the Python API
   :func:`socket.fromshare` a socket :func:`~socket.socket.share`-ed in older
   Python versions.
 
+* ``repr`` for :class:`datetime.timedelta` has changed to include keyword arguments
+  in the output. (Contributed by Utkarsh Upadhyay in :issue:`30302`.)
+
 
 CPython bytecode changes
 ------------------------