]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-37284: Add note to sys.implementation doc (GH-14328)
authorGiovanni Cappellotto <gcappellotto@fb.com>
Mon, 15 Jul 2019 14:37:09 +0000 (10:37 -0400)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 15 Jul 2019 14:37:09 +0000 (07:37 -0700)
Add a brief note to indicate that any new required attributes must go through the PEP process.

https://bugs.python.org/issue37284

Doc/library/sys.rst
Misc/NEWS.d/next/Documentation/2019-07-13-12-58-20.bpo-37284.rP8WpB.rst [new file with mode: 0644]

index acd54421a370aaf6d322694d8bc0e8385cc7cc95..6119bee10ab39713ef6033e51f57ce5eb5b40ae8 100644 (file)
@@ -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 (file)
index 0000000..f875791
--- /dev/null
@@ -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