summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.5.rst
diff options
context:
space:
mode:
authorTal Einat <taleinat@gmail.com>2015-05-31 19:18:31 (GMT)
committerTal Einat <taleinat@gmail.com>2015-05-31 19:18:31 (GMT)
commitf67b0a36c515a479cc2d7616fb878dfd0f2b0029 (patch)
tree0cefec4c9cefe64b75b9f0cb2c106d398aad43ff /Doc/whatsnew/3.5.rst
parentd5519ed7f4889060363673ec802177250299920e (diff)
downloadcpython-f67b0a36c515a479cc2d7616fb878dfd0f2b0029.zip
cpython-f67b0a36c515a479cc2d7616fb878dfd0f2b0029.tar.gz
cpython-f67b0a36c515a479cc2d7616fb878dfd0f2b0029.tar.bz2
minor fix of module order in whatsnew/3.5
Diffstat (limited to 'Doc/whatsnew/3.5.rst')
-rw-r--r--Doc/whatsnew/3.5.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index 085ade7..b60cd1b 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -550,6 +550,14 @@ json
* JSON decoder now raises :exc:`json.JSONDecodeError` instead of
:exc:`ValueError`. (Contributed by Serhiy Storchaka in :issue:`19361`.)
+math
+----
+
+* :data:`math.inf` and :data:`math.nan` constants added. (Contributed by Mark
+ Dickinson in :issue:`23185`.)
+* :func:`math.isclose` function added.
+ (Contributed by Chris Barker and Tal Einat in :issue:`24270`.)
+
os
--
@@ -592,14 +600,6 @@ re
* Now unmatched groups are replaced with empty strings in :func:`re.sub`
and :func:`re.subn`. (Contributed by Serhiy Storchaka in :issue:`1519638`.)
-math
-----
-
-* :data:`math.inf` and :data:`math.nan` constants added. (Contributed by Mark
- Dickinson in :issue:`23185`.)
-* :func:`math.isclose` function added.
- (Contributed by Chris Barker and Tal Einat in :issue:`24270`.)
-
shutil
------