@@ -93,7 +93,7 @@ CPython implementation improvements:
9393* Customization of class creation has been simplified with the
9494 :ref: `new protocol <whatsnew36-pep487 >`.
9595
96- * The class attibute definition order is
96+ * The class attribute definition order is
9797 :ref: `now preserved <whatsnew36-pep520 >`.
9898
9999* The order of elements in ``**kwargs `` now
@@ -127,7 +127,7 @@ Significant improvements in the standard library:
127127 :ref: `improvements <whatsnew36-typing >` and is no longer provisional.
128128
129129* The :mod: `tracemalloc ` module has been significantly reworked
130- and is now used to provide better output for :exc: `ResourceWarning`s
130+ and is now used to provide better output for :exc: `ResourceWarning `
131131 as well as provide better diagnostics for memory allocation errors.
132132 See the :ref: `PYTHONMALLOC section <whatsnew36-pythonmalloc >` for more
133133 information.
@@ -874,14 +874,6 @@ Notable changes in the :mod:`asyncio` module since Python 3.5.0
874874 (Contributed by Jim Fulton in :issue: `27392 `.)
875875
876876
877- base64
878- ------
879-
880- The :func: `~base64.a85decode ` function no longer requires the leading
881- ``'<~' `` characters in input when the *adobe * argument is set.
882- (Contributed by Swati Jaiswal in :issue: `25913 `.)
883-
884-
885877binascii
886878--------
887879
@@ -984,15 +976,6 @@ with a positive denominator::
984976(Contributed by Stefan Krah amd Mark Dickinson in :issue: `25928 `.)
985977
986978
987- dis
988- ---
989-
990- Disassembling a class now disassembles class and static
991- methods. (Contributed by Xiang Zhang in :issue: `26733 `.)
992-
993- The disassembler now decodes ``FORMAT_VALUE `` argument.
994- (Contributed by Serhiy Storchaka in :issue: `28317 `.)
995-
996979
997980distutils
998981---------
@@ -1299,10 +1282,6 @@ Private and special attribute names now are omitted unless the prefix starts
12991282with underscores. A space or a colon is added after some completed keywords.
13001283(Contributed by Serhiy Storchaka in :issue: `25011 ` and :issue: `25209 `.)
13011284
1302- Names of most attributes listed by :func: `dir ` are now completed.
1303- Previously, names of properties and slots which were not yet created on
1304- an instance were excluded. (Contributed by Martin Panter in :issue: `25590 `.)
1305-
13061285
13071286shlex
13081287-----
@@ -1398,10 +1377,6 @@ Server and client-side specific TLS protocols for :class:`~ssl.SSLContext`
13981377were added.
13991378(Contributed by Christian Heimes in :issue: `28085 `.)
14001379
1401- General resource ids (``GEN_RID ``) in subject alternative name extensions
1402- no longer case a SystemError.
1403- (Contributed by Christian Heimes in :issue: `27691 `.)
1404-
14051380
14061381statistics
14071382----------
@@ -2183,21 +2158,10 @@ Changes in the Python API
21832158 :func: `~collections.namedtuple ` are now keyword-only.
21842159 (Contributed by Raymond Hettinger in :issue: `25628 `.)
21852160
2186- * The :meth: `~cgi.FieldStorage.read_multi ` method now ignores the
2187- ``Content-Length `` header in part headers.
2188- (Contributed by Peter Landry in :issue: `24764 `.)
2189-
21902161* On Linux, :func: `ctypes.util.find_library ` now looks in
21912162 ``LD_LIBRARY_PATH `` for shared libraries.
21922163 (Contributed by Vinay Sajip in :issue: `9998 `.)
21932164
2194- * The :meth: `datetime.fromtimestamp() <datetime.datetime.fromtimestamp> ` and
2195- :meth: `datetime.utcfromtimestamp() <datetime.datetime.utcfromtimestamp> `
2196- methods now round microseconds to nearest with ties going to
2197- nearest even integer (``ROUND_HALF_EVEN ``), instead of
2198- rounding towards negative infinity (``ROUND_FLOOR ``).
2199- (Contributed by Victor Stinner in :issue: `23517 `.)
2200-
22012165* The :class: `imaplib.IMAP4 ` class now handles flags containing the
22022166 ``']' `` character in messages sent from the server to improve
22032167 real-world compatibility.
0 commit comments