Skip to content

Commit d7c567b

Browse files
committed
3.7.7
1 parent e7ca2d3 commit d7c567b

6 files changed

Lines changed: 26 additions & 12 deletions

File tree

Include/patchlevel.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 7
2121
#define PY_MICRO_VERSION 7
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 1
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23+
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.7.7rc1+"
26+
#define PY_VERSION "3.7.7"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Lib/pydoc_data/topics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Wed Mar 4 02:29:35 2020
2+
# Autogenerated by Sphinx on Tue Mar 10 02:06:42 2020
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -8920,7 +8920,7 @@
89208920
'\n'
89218921
'If the metaclass has no "__prepare__" attribute, then the '
89228922
'class\n'
8923-
'namespace is initialised as an empty "dict()".\n'
8923+
'namespace is initialised as an empty ordered mapping.\n'
89248924
'\n'
89258925
'See also:\n'
89268926
'\n'

Misc/NEWS.d/3.7.7.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.. bpo: 13487
2+
.. date: 2020-03-04-16-10-59
3+
.. nonce: gqe4Fb
4+
.. release date: 2020-03-10
5+
.. section: Library
6+
7+
Avoid a possible *"RuntimeError: dictionary changed size during iteration"*
8+
from :func:`inspect.getmodule` when it tried to loop through
9+
:attr:`sys.modules`.
10+
11+
..
12+
13+
.. bpo: 17422
14+
.. date: 2020-02-27-17-35-27
15+
.. nonce: eS1hVh
16+
.. section: Documentation
17+
18+
The language reference no longer restricts default class namespaces to dicts
19+
only.

Misc/NEWS.d/next/Documentation/2020-02-27-17-35-27.bpo-17422.eS1hVh.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Library/2020-03-04-16-10-59.bpo-13487.gqe4Fb.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.7.7 candidate 1+
2-
=========================================
1+
This is Python version 3.7.7
2+
============================
33

44
.. image:: https://travis-ci.org/python/cpython.svg?branch=3.7
55
:alt: CPython build status on Travis CI

0 commit comments

Comments
 (0)