Skip to content

Commit 63d802d

Browse files
authored
Meta: Clearly document current guidance for changing existing PEPs (python#2378)
* Meta: Document expectations for changing existing PEPs in contrib guide * Meta: Clarify commit message/PR title prefixes in contrib guide * Meta: Further improve change policy in CG per Jelle's feedback * Meta: Reduce verbosity and perscriptiveness of changes section in CG * Meta: Move more general/normative PEP modification guidance to PEP 1 * Meta: Further revise PEP change guidance to reflect current reality * Meta: Update, simplify and consolidate guidance on changing PEPs * PEP 1: Remove sentence explicitly discussing changing governance PEPs
1 parent f73a0aa commit 63d802d

File tree

2 files changed

+66
-35
lines changed

2 files changed

+66
-35
lines changed

CONTRIBUTING.rst

+30-11
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,39 @@ first in an appropriate venue, drafting a PEP and gathering feedback, and
1818
developing at least a prototype reference implementation of your idea.
1919

2020

21+
Contributing changes to existing PEPs
22+
-------------------------------------
23+
24+
In general, most non-Draft/Active PEPs are considered to be historical
25+
documents rather than living specifications or documentation. Major changes to
26+
their core content usually require a new PEP, while smaller modifications may
27+
or may not be appropriate, depending on the PEP's status. See `PEP Maintenance
28+
<https://peps.python.org/pep-0001/#pep-maintenance>`_
29+
and `Changing Existing PEPs
30+
<https://peps.python.org/pep-0001/#changing-existing-peps>`_ in PEP 1 for more.
31+
32+
Copyediting and proofreading Draft and Active PEPs is welcome (subject to
33+
review by the PEP author), and can be done via pull request to this repo.
34+
Substantive content changes should first be proposed on PEP discussion threads.
35+
We do advise against PRs that simply mass-correct minor typos on older PEPs
36+
which don't significantly impair meaning and understanding.
37+
38+
If you're still unsure, we encourage you to reach out first before opening a
39+
PR here. For example, you could contact the PEP author(s), propose your idea in
40+
a discussion venue appropriate to the PEP (such as `Typing-SIG
41+
<https://mail.python.org/archives/list/[email protected]/>`__ for static
42+
typing, or `Packaging Discourse <https://discuss.python.org/c/packaging/>`__
43+
for packaging), or `open an issue <https://github.com/python/peps/issues>`__.
44+
45+
2146
Commit messages and PR titles
2247
-----------------------------
2348

24-
When adding or modifying a PEP, please always include the PEP number in the
25-
commit summary and pull request title.
26-
For example, ``PEP NNN: <summary of changes>``.
49+
When adding or modifying a PEP, please include the PEP number in the commit
50+
summary and pull request title. For example, ``PEP NNN: <summary of changes>``.
51+
Likewise, prefix rendering infrastructure changes with ``Infra:``, linting
52+
alterations with ``Lint:`` and other non-PEP meta changes, such as updates to
53+
the Readme/Contributing Guide, issue/PR template, etc., with ``Meta:``.
2754

2855

2956
Sign the CLA
@@ -122,11 +149,3 @@ or against all files with
122149
.. code-block:: bash
123150
124151
pre-commit run --all-files --hook-stage manual codespell
125-
126-
**Note**: While fixing spelling mistakes as part of more substantive
127-
copyediting and proofreading of draft and active PEPs is okay,
128-
we generally advise against PRs that simply mass-correct minor typos on
129-
older PEPs that don't significantly impair meaning and understanding,
130-
as these tend to create a fairly high level of noise and churn for
131-
PEP readers, authors and editors relative to the amount of practical value
132-
they provide.

pep-0001.txt

+36-24
Original file line numberDiff line numberDiff line change
@@ -460,19 +460,25 @@ if they are never meant to be completed. E.g. :pep:`1` (this PEP).
460460
PEP Maintenance
461461
---------------
462462

463-
In general, Standards track PEPs are no longer modified after they have
464-
reached the Final state. Once a PEP has been completed, the Language and
465-
Standard Library References become the formal documentation of the expected
466-
behavior.
463+
In general, PEPs are no longer substantially modified after they have reached
464+
the Accepted, Final, Rejected or Superseded state. Once resolution is reached,
465+
a PEP is considered a historical document rather than a living specification.
466+
Formal documentation of the expected behavior should be maintained elsewhere,
467+
such as the `Language Reference`_ for core features, the `Library Reference`_
468+
for standard library modules or the `PyPA Specifications`_ for packaging.
467469

468470
If changes based on implementation experience and user feedback are made to
469-
Standards track PEPs while in the Accepted or Provisional State, those changes
470-
should be noted in the PEP, such that the PEP accurately describes the state of
471+
Standards track PEPs while in the Provisional or (with SC approval) Accepted
472+
state, they should be noted in the PEP, such that the PEP accurately describes
471473
the implementation at the point where it is marked Final.
472474

473-
Informational and Process PEPs may be updated over time to reflect changes
474-
to development practices and other details. The precise process followed in
475-
these cases will depend on the nature and purpose of the PEP being updated.
475+
Active (Informational and Process) PEPs may be updated over time to reflect
476+
changes to development practices and other details. The precise process
477+
followed in these cases will depend on the nature and purpose of the PEP
478+
in question.
479+
480+
Occasionally, a Deferred or even a Withdrawn PEP may be resurrected
481+
with major updates, but it is often better to just propose a new one.
476482

477483

478484
What belongs in a successful PEP?
@@ -699,23 +705,21 @@ Alternatively, all support files may be placed in a subdirectory called
699705
are no constraints on the names used in files.
700706

701707

702-
Reporting PEP Bugs, or Submitting PEP Updates
703-
=============================================
704-
705-
How you report a bug, or submit a PEP update depends on several
706-
factors, such as the maturity of the PEP, the preferences of the PEP
707-
author, and the nature of your comments. For the early draft stages
708-
of the PEP, it's probably best to send your comments and changes
709-
directly to the PEP author. For more mature, or finished PEPs you may
710-
want to submit corrections as a `GitHub issue`_ or `GitHub pull request`_ so that
711-
your changes don't get lost.
708+
Changing Existing PEPs
709+
======================
712710

713-
When in doubt about where to send your changes, please check first
714-
with the PEP author and/or a PEP editor.
711+
Draft PEPs are freely open for discussion and proposed modification, at the
712+
discretion of the authors, until submitted to the Steering Council or
713+
PEP-Delegate for review and resolution. Substantive content changes should
714+
generally be first proposed on the PEP's discussion thread listed in its
715+
``Discussions-To`` header, while copyedits and corrections can be submitted
716+
as a `GitHub issue`_ or `GitHub pull request`_.
717+
PEP authors with write access to the PEP repository can update the PEPs
718+
themselves by using ``git push`` or a GitHub PR to submit their changes.
719+
For guidance on modifying other PEPs, consult the `PEP Maintenance`_ section.
715720

716-
PEP authors with write access to the PEP repository can update the
717-
PEPs themselves by using "git push" or the GitHub PR interface to submit their
718-
changes.
721+
See the `Contributing Guide`_ for additional details, and when in doubt,
722+
please check first with the PEP author and/or a PEP editor.
719723

720724

721725
Transferring PEP Ownership
@@ -858,6 +862,14 @@ Footnotes
858862

859863
.. _Packaging category: https://discuss.python.org/c/packaging/
860864

865+
.. _Language Reference: https://docs.python.org/3/reference/index.html
866+
867+
.. _Library Reference: https://docs.python.org/3/library/index.html
868+
869+
.. _PyPA Specifications: https://packaging.python.org/en/latest/specifications/
870+
871+
.. _Contributing Guide: https://github.com/python/peps/blob/main/CONTRIBUTING.rst
872+
861873

862874
Copyright
863875
=========

0 commit comments

Comments
 (0)