]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
3.7.5 v3.7.5
authorNed Deily <nad@python.org>
Mon, 14 Oct 2019 22:32:36 +0000 (18:32 -0400)
committerNed Deily <nad@python.org>
Mon, 14 Oct 2019 22:32:36 +0000 (18:32 -0400)
Doc/tools/templates/indexsidebar.html
Include/patchlevel.h
Lib/pydoc_data/topics.py
Misc/NEWS.d/3.7.5.rst [new file with mode: 0644]
Misc/NEWS.d/next/Documentation/2019-09-27-23-37-41.bpo-38294.go_jFf.rst [deleted file]
Misc/NEWS.d/next/Library/2019-05-20-08-54-41.bpo-36952.I_glok.rst [deleted file]
Misc/NEWS.d/next/Library/2019-10-12-08-57-34.bpo-38449.9TWMlz.rst [deleted file]
Misc/NEWS.d/next/Library/2019-10-14-17-56-45.bpo-38368.c-5PhD.rst [deleted file]
Misc/NEWS.d/next/Windows/2019-10-05-05-50-58.bpo-38344.scr2LO.rst [deleted file]
README.rst

index 0adaf038d0e522ddca1bfb5b989611dd4d2cb0c0..e5748f2ab0fc6e981ffb8ef988c32c3fb910648a 100644 (file)
@@ -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>
index 4bd828e1132ed8a4800e9e1fa63b49be340e3265..083aeb8bc6297052d55e3c8694b98b7ba757832e 100644 (file)
 #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.
index fa15b648ccc7033ab5016536659080bb3e53af03..ffde9d4309c58ff1d426849bd1cb4de77af7fcaf 100644 (file)
@@ -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 (file)
index 0000000..f019782
--- /dev/null
@@ -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 (file)
index 0bde8c8..0000000
+++ /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 (file)
index eeb4fd7..0000000
+++ /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 (file)
index f7b1dbf..0000000
+++ /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 (file)
index 0003115..0000000
+++ /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 (file)
index 909d5ce..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Fix syntax in activate.bat
index 65a5d4929d61b036b9c03ee69dc1ce8f8a141161..795b821dd076a96790e04c35c52b56051665560d 100644 (file)
@@ -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