* Update 'Porting to .37' section.
* Fix a minor example in the doc.
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
: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
------------------------