Python 3.7.4
-----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEDZbfTUEQ5cQ/v7F/LTR+pqplQh0FAl0jhbcACgkQLTR+pqpl Qh0L/RAA0VudQZoa1URDmigDGODWg+LZ7Qf9Po5/9y2Zp3dytbxrt40zzo/Wonhi jbwbpo6umkpL0TlziN2biKSjbPzzvAlk0+Y+Iw3tXDGByqZ25GD4G3AE4nS/xbou oDmH6uLqgbvPRwFJYrFG3avplVpIj38MkScdbUQ+2pLPulcBnw52eFmzav2JuT8W WDNeLIRn8kCbjL7T+nLIU0YdE39E3OE3KMVWFZwNmkutNIm3YT0k+eMafbvOGKJQ iTZZ3d6miGqSILqQLiJjUzUneJemlvGJmOrtpJlhZiUjb8202MlhKDW2Bk6MWSKV DqTXapMw1lGCVd7zELMIK01pjpW0nqzo44tSzlqSMHoBrHDP7QNnhCin+jmHP/er h0J/K9+zkDCWc45a/KymDn2PpXeTwY2aIUcvW/2mQX6EeEm6dwq2Vvz8mjflRyYz Wd89Yi475bZfZQ4bxce1sFQ6a6b0jOShl21kbehCWtslvqc/5Y94brIinU7OTF1N xeHMPoM2mHprT/ftxmbgrrlISP7usYSgmDa/MuBOgH6cPxsZq+J9HkDtONgFe5UE OXV6ucQ4c+5uOCBHVdbC6iPFdJvJJ4Ok5LFQ9CjL3y61H+WT1mkqSZeFyqWHurJB ip8mScWh24FCQDH0PLMmDoS1BLUqq0ROFynXDb3Rycp1jz/fYqQ= =Hhx/ -----END PGP SIGNATURE----- Merge release engineering branch
This commit is contained in:
commit
d9012d6f23
|
@ -19,11 +19,11 @@
|
|||
#define PY_MAJOR_VERSION 3
|
||||
#define PY_MINOR_VERSION 7
|
||||
#define PY_MICRO_VERSION 4
|
||||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
|
||||
#define PY_RELEASE_SERIAL 2
|
||||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
|
||||
#define PY_RELEASE_SERIAL 0
|
||||
|
||||
/* Version as a string */
|
||||
#define PY_VERSION "3.7.4rc2+"
|
||||
#define PY_VERSION "3.7.4"
|
||||
/*--end constants--*/
|
||||
|
||||
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
.. bpo: 37500
|
||||
.. date: 2019-07-08-12-28-26
|
||||
.. nonce: 2OjTir
|
||||
.. release date: 2019-07-08
|
||||
.. section: Core and Builtins
|
||||
|
||||
Due to unintended side effects, revert the change introduced by
|
||||
:issue:`1875` in 3.7.4rc1 to check for syntax errors in dead conditional
|
||||
code blocks.
|
||||
|
||||
..
|
||||
|
||||
.. bpo: 37149
|
||||
.. date: 2019-07-06-02-19-02
|
||||
.. nonce: NumHn3
|
||||
.. section: Documentation
|
||||
|
||||
Replace the dead link to the Tkinter 8.5 reference by John Shipman, New
|
||||
Mexico Tech, with a link to the archive.org copy.
|
|
@ -131,7 +131,7 @@ ensure GC-ed objects are aligned properly. Patch by Inada Naoki.
|
|||
|
||||
A :exc:`SyntaxError` is now raised if a code blocks that will be optimized
|
||||
away (e.g. if conditions that are always false) contains syntax errors.
|
||||
Patch by Pablo Galindo.
|
||||
Patch by Pablo Galindo. (Reverted in 3.7.4 final by :issue:`37500`.)
|
||||
|
||||
..
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
Replace the dead link to the Tkinter 8.5 reference by John Shipman, New
|
||||
Mexico Tech, with a link to the archive.org copy.
|
|
@ -1,5 +1,5 @@
|
|||
This is Python version 3.7.4 candidate 2+
|
||||
=========================================
|
||||
This is Python version 3.7.4
|
||||
============================
|
||||
|
||||
.. image:: https://travis-ci.org/python/cpython.svg?branch=master
|
||||
:alt: CPython build status on Travis CI
|
||||
|
|
Loading…
Reference in New Issue