[Python-checkins] bpo-37284: Add note to sys.implementation doc (GH-14328)

Miss Islington (bot) webhook-mailer at python.org
Mon Jul 15 10:37:36 EDT 2019


https://github.com/python/cpython/commit/52693c10e82622d883433b779a45d0bd792f17ed
commit: 52693c10e82622d883433b779a45d0bd792f17ed
branch: master
author: Giovanni Cappellotto <gcappellotto at fb.com>
committer: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
date: 2019-07-15T07:37:09-07:00
summary:

bpo-37284: Add note to sys.implementation doc (GH-14328)



Add a brief note to indicate that any new required attributes must go through the PEP process.





https://bugs.python.org/issue37284

files:
A Misc/NEWS.d/next/Documentation/2019-07-13-12-58-20.bpo-37284.rP8WpB.rst
M Doc/library/sys.rst

diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index acd54421a370..6119bee10ab3 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -875,6 +875,10 @@ always available.
 
    .. versionadded:: 3.3
 
+   .. note::
+
+      The addition of new required attributes must go through the normal PEP
+      process. See :pep:`421` for more information.
 
 .. data:: int_info
 
diff --git a/Misc/NEWS.d/next/Documentation/2019-07-13-12-58-20.bpo-37284.rP8WpB.rst b/Misc/NEWS.d/next/Documentation/2019-07-13-12-58-20.bpo-37284.rP8WpB.rst
new file mode 100644
index 000000000000..f875791c9a93
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2019-07-13-12-58-20.bpo-37284.rP8WpB.rst
@@ -0,0 +1 @@
+Add a brief note to indicate that any new ``sys.implementation`` required attributes must go through the PEP process.
\ No newline at end of file



More information about the Python-checkins mailing list