summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-10-08 10:58:49 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-10-08 10:58:49 (GMT)
commitb6c9572fa9e88029beda2d9cc6b387020f0a7d69 (patch)
tree87d7da01eff8745380ba483d217ee8fd70702908 /Doc
parent960e848f0d32399824d61dce2ff5736bb596ed44 (diff)
downloadcpython-b6c9572fa9e88029beda2d9cc6b387020f0a7d69.zip
cpython-b6c9572fa9e88029beda2d9cc6b387020f0a7d69.tar.gz
cpython-b6c9572fa9e88029beda2d9cc6b387020f0a7d69.tar.bz2
Sort module names in whatsnew/3.6.rst
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.6.rst23
1 files changed, 12 insertions, 11 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 3080820..50d2a6a 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -95,12 +95,21 @@ New 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
--------
-* New object :data:`operator.subscript` makes it easier to create complex
- indexers. For example: ``subscript[0:10:2] == slice(0, 10, 2)``
- (Contributed by Joe Jevnik in :issue:`24379`.)
+New object :data:`operator.subscript` makes it easier to create complex
+indexers. For example: ``subscript[0:10:2] == slice(0, 10, 2)``
+(Contributed by Joe Jevnik in :issue:`24379`.)
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.
(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
------------------