summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2019-10-14 18:32:36 -0400
committerNed Deily <nad@python.org>2019-10-14 18:32:36 -0400
commit5c02a39a0b31a330e06b4d6f44835afb205dc7cc (patch)
treee7643c9a92c2e763c6c59166fc93c4ccf6d6d5c6
parentFix some news entries for 3.7.5 final. (diff)
downloadcpython-5c02a39a0b31a330e06b4d6f44835afb205dc7cc.tar.gz
cpython-5c02a39a0b31a330e06b4d6f44835afb205dc7cc.tar.bz2
cpython-5c02a39a0b31a330e06b4d6f44835afb205dc7cc.zip
3.7.5v3.7.5
-rw-r--r--Doc/tools/templates/indexsidebar.html2
-rw-r--r--Include/patchlevel.h6
-rw-r--r--Lib/pydoc_data/topics.py2
-rw-r--r--Misc/NEWS.d/3.7.5.rst26
-rw-r--r--Misc/NEWS.d/next/Documentation/2019-09-27-23-37-41.bpo-38294.go_jFf.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-20-08-54-41.bpo-36952.I_glok.rst5
-rw-r--r--Misc/NEWS.d/next/Library/2019-10-12-08-57-34.bpo-38449.9TWMlz.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-10-14-17-56-45.bpo-38368.c-5PhD.rst1
-rw-r--r--Misc/NEWS.d/next/Windows/2019-10-05-05-50-58.bpo-38344.scr2LO.rst1
-rw-r--r--README.rst4
10 files changed, 33 insertions, 17 deletions
diff --git a/Doc/tools/templates/indexsidebar.html b/Doc/tools/templates/indexsidebar.html
index 0adaf038d0e..e5748f2ab0f 100644
--- a/Doc/tools/templates/indexsidebar.html
+++ b/Doc/tools/templates/indexsidebar.html
@@ -3,7 +3,7 @@
<h3>{% trans %}Docs by version{% endtrans %}</h3>
<ul>
<li><a href="https://docs.python.org/3.9/">{% trans %}Python 3.9 (in development){% endtrans %}</a></li>
- <li><a href="https://docs.python.org/3.8/">{% trans %}Python 3.8 (pre-release){% endtrans %}</a></li>
+ <li><a href="https://docs.python.org/3.8/">{% trans %}Python 3.8 (stable){% endtrans %}</a></li>
<li><a href="https://docs.python.org/3.7/">{% trans %}Python 3.7 (stable){% endtrans %}</a></li>
<li><a href="https://docs.python.org/3.6/">{% trans %}Python 3.6 (security-fixes){% endtrans %}</a></li>
<li><a href="https://docs.python.org/3.5/">{% trans %}Python 3.5 (security-fixes){% endtrans %}</a></li>
diff --git a/Include/patchlevel.h b/Include/patchlevel.h
index 4bd828e1132..083aeb8bc62 100644
--- a/Include/patchlevel.h
+++ b/Include/patchlevel.h
@@ -19,11 +19,11 @@
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 7
#define PY_MICRO_VERSION 5
-#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
-#define PY_RELEASE_SERIAL 1
+#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
+#define PY_RELEASE_SERIAL 0
/* Version as a string */
-#define PY_VERSION "3.7.5rc1+"
+#define PY_VERSION "3.7.5"
/*--end constants--*/
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py
index fa15b648ccc..ffde9d4309c 100644
--- a/Lib/pydoc_data/topics.py
+++ b/Lib/pydoc_data/topics.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Autogenerated by Sphinx on Tue Oct 1 13:12:46 2019
+# Autogenerated by Sphinx on Mon Oct 14 18:26:58 2019
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
diff --git a/Misc/NEWS.d/3.7.5.rst b/Misc/NEWS.d/3.7.5.rst
new file mode 100644
index 00000000000..f01978263c7
--- /dev/null
+++ b/Misc/NEWS.d/3.7.5.rst
@@ -0,0 +1,26 @@
+.. bpo: 38368
+.. date: 2019-10-14-17-56-45
+.. nonce: c-5PhD
+.. release date: 2019-10-14
+.. section: Library
+
+Prevent ctypes crash when handling arrays in structs/unions.
+
+..
+
+.. bpo: 38449
+.. date: 2019-10-12-08-57-34
+.. nonce: 9TWMlz
+.. section: Library
+
+Revert GH-15522, which introduces a regression in
+:meth:`mimetypes.guess_type` due to improper handling of filenames as urls.
+
+..
+
+.. bpo: 38344
+.. date: 2019-10-05-05-50-58
+.. nonce: scr2LO
+.. section: Windows
+
+Fix syntax in activate.bat.
diff --git a/Misc/NEWS.d/next/Documentation/2019-09-27-23-37-41.bpo-38294.go_jFf.rst b/Misc/NEWS.d/next/Documentation/2019-09-27-23-37-41.bpo-38294.go_jFf.rst
deleted file mode 100644
index 0bde8c868c9..00000000000
--- a/Misc/NEWS.d/next/Documentation/2019-09-27-23-37-41.bpo-38294.go_jFf.rst
+++ /dev/null
@@ -1 +0,0 @@
-Add list of no-longer-escaped chars to re.escape documentation \ No newline at end of file
diff --git a/Misc/NEWS.d/next/Library/2019-05-20-08-54-41.bpo-36952.I_glok.rst b/Misc/NEWS.d/next/Library/2019-05-20-08-54-41.bpo-36952.I_glok.rst
deleted file mode 100644
index eeb4fd71e67..00000000000
--- a/Misc/NEWS.d/next/Library/2019-05-20-08-54-41.bpo-36952.I_glok.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Starting with Python 3.3, importing ABCs from :mod:`collections` is
-deprecated, and import should be done from :mod:`collections.abc`. Still
-being able to import from :mod:`collections` was marked for removal in 3.8,
-but has been delayed to 3.9; documentation and ``DeprecationWarning``
-clarified.
diff --git a/Misc/NEWS.d/next/Library/2019-10-12-08-57-34.bpo-38449.9TWMlz.rst b/Misc/NEWS.d/next/Library/2019-10-12-08-57-34.bpo-38449.9TWMlz.rst
deleted file mode 100644
index f7b1dbf8d89..00000000000
--- a/Misc/NEWS.d/next/Library/2019-10-12-08-57-34.bpo-38449.9TWMlz.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Revert GH-15522, which introduces a regression in
-:meth:`mimetypes.guess_type` due to improper handling of filenames as urls.
diff --git a/Misc/NEWS.d/next/Library/2019-10-14-17-56-45.bpo-38368.c-5PhD.rst b/Misc/NEWS.d/next/Library/2019-10-14-17-56-45.bpo-38368.c-5PhD.rst
deleted file mode 100644
index 0003115b95e..00000000000
--- a/Misc/NEWS.d/next/Library/2019-10-14-17-56-45.bpo-38368.c-5PhD.rst
+++ /dev/null
@@ -1 +0,0 @@
-Prevent ctypes crash when handling arrays in structs/unions.
diff --git a/Misc/NEWS.d/next/Windows/2019-10-05-05-50-58.bpo-38344.scr2LO.rst b/Misc/NEWS.d/next/Windows/2019-10-05-05-50-58.bpo-38344.scr2LO.rst
deleted file mode 100644
index 909d5cec1ed..00000000000
--- a/Misc/NEWS.d/next/Windows/2019-10-05-05-50-58.bpo-38344.scr2LO.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix syntax in activate.bat
diff --git a/README.rst b/README.rst
index 65a5d4929d6..795b821dd07 100644
--- a/README.rst
+++ b/README.rst
@@ -1,5 +1,5 @@
-This is Python version 3.7.5 release candidate+
-===============================================
+This is Python version 3.7.5
+============================
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.7
:alt: CPython build status on Travis CI