diff options
author | Giovanni Cappellotto <gcappellotto@fb.com> | 2019-07-15 14:37:09 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-07-15 14:37:09 (GMT) |
commit | 52693c10e82622d883433b779a45d0bd792f17ed (patch) | |
tree | f740e25bfd6a92643f34d79074ff79a6ff694ad8 /Doc/library/sys.rst | |
parent | 18c5f9d44dde37c0fae5585a604c6027825252d2 (diff) | |
download | cpython-52693c10e82622d883433b779a45d0bd792f17ed.zip cpython-52693c10e82622d883433b779a45d0bd792f17ed.tar.gz cpython-52693c10e82622d883433b779a45d0bd792f17ed.tar.bz2 |
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
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index acd5442..6119bee 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 |