Skip to content

Commit

Permalink
3.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ned-deily committed Mar 10, 2020
1 parent e7ca2d3 commit d7c567b
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Include/patchlevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 7
#define PY_MICRO_VERSION 7
#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.7rc1+"
#define PY_VERSION "3.7.7"
/*--end constants--*/

/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Expand Down
4 changes: 2 additions & 2 deletions Lib/pydoc_data/topics.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on Wed Mar 4 02:29:35 2020
# Autogenerated by Sphinx on Tue Mar 10 02:06:42 2020
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
Expand Down Expand Up @@ -8920,7 +8920,7 @@
'\n'
'If the metaclass has no "__prepare__" attribute, then the '
'class\n'
'namespace is initialised as an empty "dict()".\n'
'namespace is initialised as an empty ordered mapping.\n'
'\n'
'See also:\n'
'\n'
Expand Down
19 changes: 19 additions & 0 deletions Misc/NEWS.d/3.7.7.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.. bpo: 13487
.. date: 2020-03-04-16-10-59
.. nonce: gqe4Fb
.. release date: 2020-03-10
.. section: Library
Avoid a possible *"RuntimeError: dictionary changed size during iteration"*
from :func:`inspect.getmodule` when it tried to loop through
:attr:`sys.modules`.

..
.. bpo: 17422
.. date: 2020-02-27-17-35-27
.. nonce: eS1hVh
.. section: Documentation
The language reference no longer restricts default class namespaces to dicts
only.

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
This is Python version 3.7.7 candidate 1+
=========================================
This is Python version 3.7.7
============================

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

0 comments on commit d7c567b

Please sign in to comment.