PEP 558: Add Discussions-To header for Discourse thread (#1265)

Also adjusts a Python version reference to account for two
releases taking place since the first draft of this PEP.
This commit is contained in:
Nick Coghlan 2019-12-31 15:13:30 +10:00 committed by GitHub
parent 54888058ce
commit 475d6cdf8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ PEP: 558
Title: Defined semantics for locals()
Author: Nick Coghlan <ncoghlan@gmail.com>
BDFL-Delegate: Nathaniel J. Smith
Discussions-To: https://discuss.python.org/t/pep-558-defined-semantics-for-locals/2936
Status: Draft
Type: Standards Track
Content-Type: text/x-rst
@ -16,7 +17,7 @@ Abstract
The semantics of the ``locals()`` builtin have historically been underspecified
and hence implementation dependent.
This PEP proposes formally standardising on the behaviour of the CPython 3.6
This PEP proposes formally standardising on the behaviour of the CPython 3.8
reference implementation for most execution scopes, with some adjustments to the
behaviour at function scope to make it more predictable and independent of the
presence or absence of tracing functions.