Sort module names in whatsnew/3.6.rst
This commit is contained in:
parent
960e848f0d
commit
b6c9572fa9
|
@ -95,12 +95,21 @@ New Modules
|
||||||
Improved Modules
|
Improved Modules
|
||||||
================
|
================
|
||||||
|
|
||||||
|
datetime
|
||||||
|
--------
|
||||||
|
|
||||||
|
:meth:`datetime.stftime <datetime.datetime.stftime>` and
|
||||||
|
:meth:`date.stftime <datetime.date.stftime>` methods now support ISO 8601 date
|
||||||
|
directives ``%G``, ``%u`` and ``%V``.
|
||||||
|
(Contributed by Ashley Anderson in :issue:`12006`.)
|
||||||
|
|
||||||
|
|
||||||
operator
|
operator
|
||||||
--------
|
--------
|
||||||
|
|
||||||
* New object :data:`operator.subscript` makes it easier to create complex
|
New object :data:`operator.subscript` makes it easier to create complex
|
||||||
indexers. For example: ``subscript[0:10:2] == slice(0, 10, 2)``
|
indexers. For example: ``subscript[0:10:2] == slice(0, 10, 2)``
|
||||||
(Contributed by Joe Jevnik in :issue:`24379`.)
|
(Contributed by Joe Jevnik in :issue:`24379`.)
|
||||||
|
|
||||||
|
|
||||||
rlcomplete
|
rlcomplete
|
||||||
|
@ -110,14 +119,6 @@ Private and special attribute names now are omitted unless the prefix starts
|
||||||
with underscores. A space or a colon can be added after completed keyword.
|
with underscores. A space or a colon can be added after completed keyword.
|
||||||
(Contributed by Serhiy Storchaka in :issue:`25011` and :issue:`25209`.)
|
(Contributed by Serhiy Storchaka in :issue:`25011` and :issue:`25209`.)
|
||||||
|
|
||||||
datetime
|
|
||||||
--------
|
|
||||||
|
|
||||||
* :meth:`datetime.stftime <datetime.datetime.stftime>` and
|
|
||||||
:meth:`date.stftime <datetime.date.stftime>` methods now support ISO 8601
|
|
||||||
date directives ``%G``, ``%u`` and ``%V``.
|
|
||||||
(Contributed by Ashley Anderson in :issue:`12006`.)
|
|
||||||
|
|
||||||
|
|
||||||
urllib.robotparser
|
urllib.robotparser
|
||||||
------------------
|
------------------
|
||||||
|
|
Loading…
Reference in New Issue