[Python-checkins] Change "non-local state" to "content-local state". (GH-6617)

Yury Selivanov webhook-mailer at python.org
Fri Apr 27 18:35:15 EDT 2018


https://github.com/python/cpython/commit/e022bbc169ca1428dc3017187012de17ce6e0bc7
commit: e022bbc169ca1428dc3017187012de17ce6e0bc7
branch: master
author: Tom Christie <tom at tomchristie.com>
committer: Yury Selivanov <yury at magic.io>
date: 2018-04-27T18:35:13-04:00
summary:

Change "non-local state" to "content-local state". (GH-6617)

The wording here seems wrong, as per https://bugs.python.org/msg315792

files:
M Doc/library/contextvars.rst

diff --git a/Doc/library/contextvars.rst b/Doc/library/contextvars.rst
index abd0d5fa0fdf..9c7ea2bdb7b6 100644
--- a/Doc/library/contextvars.rst
+++ b/Doc/library/contextvars.rst
@@ -8,7 +8,7 @@
 
 --------------
 
-This module provides APIs to manage, store, and access non-local
+This module provides APIs to manage, store, and access context-local
 state.  The :class:`~contextvars.ContextVar` class is used to declare
 and work with *Context Variables*.  The :func:`~contextvars.copy_context`
 function and the :class:`~contextvars.Context` class should be used to



More information about the Python-checkins mailing list