Movatterモバイル変換


[0]ホーム

URL:


Following system colour schemeSelected dark colour schemeSelected light colour scheme

Python Enhancement Proposals

PEP 1 – PEP Purpose and Guidelines

Author:
Barry Warsaw, Jeremy Hylton, David Goodger, Alyssa Coghlan
Status:
Active
Type:
Process
Created:
13-Jun-2000
Post-History:
21-Mar-2001, 29-Jul-2002, 03-May-2003, 05-May-2012,07-Apr-2013

Table of Contents

What is a PEP?

PEP stands for Python Enhancement Proposal. A PEP is a designdocument providing information to the Python community, or describinga new feature for Python or its processes or environment. The PEPshould provide a concise technical specification of the feature and arationale for the feature.

We intend PEPs to be the primary mechanisms for proposing major newfeatures, for collecting community input on an issue, and fordocumenting the design decisions that have gone into Python. The PEPauthor is responsible for building consensus within the community anddocumenting dissenting opinions.

Because the PEPs are maintained as text files in a versionedrepository, their revision history is the historical record of thefeature proposal. This historical record is available by the normal gitcommands for retrieving older revisions, and can also be browsedon GitHub.

PEP Audience

The typical primary audience for PEPs are the core developers of the CPythonreference interpreter and their elected Steering Council, as well as developersof other implementations of the Python language specification.

However, other parts of the Python community may also choose to use the process(particularly for Informational PEPs) to document expected API conventions andto manage complex design coordination problems that require collaboration acrossmultiple projects.

PEP Types

There are three kinds of PEP:

  1. AStandards Track PEP describes a new feature or implementationfor Python. It may also describe an interoperability standard that willbe supported outside the standard library for current Python versionsbefore a subsequent PEP adds standard library support in a futureversion.
  2. AnInformational PEP describes a Python design issue, orprovides general guidelines or information to the Python community,but does not propose a new feature. Informational PEPs do notnecessarily represent a Python community consensus orrecommendation, so users and implementers are free to ignoreInformational PEPs or follow their advice.
  3. AProcess PEP describes a process surrounding Python, orproposes a change to (or an event in) a process. Process PEPs arelike Standards Track PEPs but apply to areas other than the Pythonlanguage itself. They may propose an implementation, but not toPython’s codebase; they often require community consensus; unlikeInformational PEPs, they are more than recommendations, and usersare typically not free to ignore them. Examples includeprocedures, guidelines, changes to the decision-making process, andchanges to the tools or environment used in Python development.Any meta-PEP is also considered a Process PEP.

PEP Workflow

Python’s Steering Council

There are several references in this PEP to the “Steering Council” or “Council”.This refers to the current members of the elected Steering Council describedinPEP 13, in their role as the final authorities on whether or not PEPswill be accepted or rejected.

Python’s Core Developers

There are several references in this PEP to “core developers”. This refers tothe currently active Python core team members described inPEP 13.

Python’s BDFL

Previous versions of this PEP used the title “BDFL-Delegate” for PEP decisionmakers. This was a historical reference to Python’s previous governance model,where all design authority ultimately derived from Guido van Rossum, theoriginal creator of the Python programming language. By contrast, the SteeringCouncil’s design authority derives from their election by the currently activecore developers. Now, PEP-Delegate is used in place of BDFL-Delegate.

PEP Editors

The PEP editors are individuals responsible for managing the administrativeand editorial aspects of the PEP workflow (e.g. assigning PEP numbers andchanging their status). SeePEP Editor Responsibilities & Workflow fordetails.

PEP editorship is by invitation of the current editors, and they can becontacted by mentioning@python/pep-editors on GitHub. All of the PEPworkflow can be conducted via the GitHubPEP repository issues and pullrequests.

Start with an idea for Python

The PEP process begins with a new idea for Python. It is highlyrecommended that a single PEP contain a single key proposal or newidea; the more focused the PEP, the more successful it tends to be.Most enhancements and bug fixes don’t need a PEP andcan be submitted directly to thePython issue tracker.The PEP editors reserve theright to reject PEP proposals if they appear too unfocused or toobroad. If in doubt, split your PEP into several well-focused ones.

Each PEP must have a champion – someone who writes the PEP using the styleand format described below, shepherds the discussions in the appropriateforums, and attempts to build community consensus around the idea. The PEPchampion (a.k.a. Author) should first attempt to ascertain whether the idea isPEP-able. Posting to theIdeas category of thePython Discourse is usuallythe best way to go about this, unless a more specialized venue is appropriate,such as theTyping category (for static typing ideas)orPackaging category (for packaging ideas) on the Python Discourse.

Vetting an idea publicly before going as far as writing a PEP is meantto save the potential author time. Many ideas have been broughtforward for changing Python that have been rejected for variousreasons. Asking the Python community first if an idea is originalhelps prevent too much time being spent on something that isguaranteed to be rejected based on prior discussions (searchingthe internet does not always do the trick). It also helps to make surethe idea is applicable to the entire community and not just the author.Just because an idea sounds good to the author does notmean it will work for most people in most areas where Python is used.

Once the champion has asked the Python community as to whether anidea has any chance of acceptance, a draft PEP should be presented tothe appropriate venue mentioned above.This gives the author a chance to flesh out the draftPEP to make properly formatted, of high quality, and to addressinitial concerns about the proposal.

Submitting a PEP

Following the above initial discussion, the workflow varies based on whetherany of the PEP’s co-authors are core developers. If one or more of the PEP’sco-authors are core developers, they are responsible for following the processoutlined below. Otherwise (i.e. none of the co-authors are core developers),then the PEP author(s) will need to find a sponsor for the PEP.

Ideally, a core developer sponsor is identified, but non-core sponsors may alsobe selected with the approval of the Steering Council. Members of the GitHub“PEP editors” team and members of the Typing Council (PEP 729) arepre-approved to be sponsors. The sponsor’s job is toprovide guidance to the PEP author to help them through the logistics of thePEP process (somewhat acting like a mentor). Being a sponsor doesnotdisqualify that person from becoming a co-author or PEP-Delegate later on (butnot both). The sponsor of a PEP is recorded in the “Sponsor:” field of theheader.

Once the sponsor or the core developer(s) co-authoring the PEP deem the PEPready for submission, the proposal should be submitted as a draft PEP via aGitHub pull request. The draft must be written in PEP style as describedbelow, else it will fail review immediately (although minor errors may becorrected by the editors).

The standard PEP workflow is:

  • You, the PEP author, fork thePEP repository, and create a file namedpep-NNNN.rst that contains your new PEP.NNNN should be the nextavailable PEP number not used by a published or in-PR PEP.
  • In the “PEP:” header field, enter the PEP number that matches your filenameas your draft PEP number.
  • In the “Type:” header field, enter “Standards Track”,“Informational”, or “Process” as appropriate, and for the “Status:”field enter “Draft”. For full details, seePEP Header Preamble.
  • Update.github/CODEOWNERS such that any co-author(s) or sponsorswith write access to thePEP repository are listed for your new file.This ensures any future pull requests changing the file will be assignedto them.
  • Push this to your GitHub fork and submit a pull request.
  • The PEP editors review your PR for structure, formatting, and othererrors. For a reST-formatted PEP,PEP 12 is provided as a template.It also provides a complete introduction to reST markup that is usedin PEPs. Approval criteria are:
    • It is sound and complete. The ideas must make technical sense. Theeditors do not consider whether they seem likely to be accepted.
    • The title accurately describes the content.
    • The PEP’s language (spelling, grammar, sentence structure, etc.)and code style (examples should matchPEP 7 &PEP 8) should becorrect and conformant. The PEP text will be automatically checked forcorrect reStructuredText formatting when the pull request is submitted.PEPs with invalid reST markup will not be approved.

    Editors are generally quite lenient about this initial review,expecting that problems will be corrected by the reviewing process.Note: Approval of the PEP is no guarantee that there are noembarrassing mistakes! Correctness is the responsibility of authorsand reviewers, not the editors.

    If the PEP isn’t ready for approval, an editor will send it back tothe author for revision, with specific instructions.

  • Once approved, they will assign your PEP a number.

Once the review process is complete, and the PEP editors approve it (note thatthis isnot the same as accepting your PEP!), they will squash commit yourpull request onto main.

The PEP editors will not unreasonably deny publication of a PEP. Reasons fordenying PEP status include duplication of effort, being technically unsound,not providing proper motivation or addressing backwards compatibility, or notin keeping with the Python philosophy. The Steering Council can be consultedduring the approval phase, and are the final arbiter of a draft’s PEP-ability.

Developers with write access to thePEP repository may claim PEPnumbers directly by creating and committing a new PEP. When doing so, thedeveloper must handle the tasks that would normally be taken care of by thePEP editors (seePEP Editor Responsibilities & Workflow). This includesensuring the initial version meets the expected standards for submitting aPEP. Alternately, even developers should submit PEPs via pull request.When doing so, you are generally expected to handle the process yourself;if you need assistance from PEP editors, mention@python/pep-editorson GitHub.

As updates are necessary, the PEP author can check in new versions if they(or a collaborating developer) have write access to thePEP repository.Getting a PEP number assigned early can be useful for ease ofreference, especially when multiple draft PEPs are being considered at thesame time.

Standards Track PEPs consist of two parts, a design document and areference implementation. It is generally recommended that at least aprototype implementation be co-developed with the PEP, as ideas that soundgood in principle sometimes turn out to be impractical when subjected to thetest of implementation.

Discussing a PEP

As soon as a PEP number has been assignedand the draft PEP is committed to thePEP repository,a discussion thread for the PEP should be createdto provide a central place to discuss and review its contents, and thePEP should be updated so that theDiscussions-To header links to it.

The PEP authors (or sponsor, if applicable) may select any reasonable venuefor the discussion, so long as the the following criteria are met:

  • The forum is appropriate to the PEP’s topic.
  • The thread is publicly available on the web so that all interested partiescan participate.
  • The discussion is subject to thePython Community Code of Conduct.
  • A direct link to the current discussion thread is provided in the PEPunder theDiscussions-To header.

ThePEPs category of thePython Discourseis the preferred choice for most new PEPs,whereas historically thePython-Dev mailing list was commonly used.Some specialized topics have specific venues, such astheTyping category and thePackaging category on the PythonDiscourse for typing and packaging PEPs, respectively.If the PEP authors are unsure of the best venue,the PEP Sponsor and PEP editors can advise them accordingly.

If a PEP undergoes a significant re-write or other major, substantivechanges to its proposed specification, a new thread should typically be createdin the chosen venue to solicit additional feedback. If this occurs, theDiscussions-To link must be updated and a newPost-History entry addedpointing to this new thread.

If it is not chosen as the discussion venue,a brief announcement post should be made to thePEPs categorywith at least a link to the rendered PEP and theDiscussions-To threadwhen the draft PEP is committed to the repositoryand if a major-enough change is made to trigger a new thread.

PEP authors are responsible for collecting community feedback on a PEPbefore submitting it for review. However, to avoid long-winded andopen-ended discussions, strategies such as soliciting private or morenarrowly-tailored feedback in the early design phase,collaborating with other community members with expertise in the PEP’ssubject matter, and picking an appropriately-specialized discussion for thePEP’s topic (if applicable) should be considered.PEP authors should use their discretion here.

Once the PEP is assigned a number and committed to the PEP repository,substantive issues should generally be discussed on the canonical publicthread, as opposed to private channels, GitHub pull request reviews orunrelated venues. This ensures everyone can follow and contribute,avoids fragmenting the discussion,and makes sure it is fully considered as part of the PEP review process.Comments, support, concerns and other feedback on this designated threadare a critical part of what the Steering Council or PEP-Delegate willconsider when reviewing the PEP.

PEP Review & Resolution

Once the authors have completed a PEP, they may request a review forstyle and consistency from the PEP editors.However, content review and acceptance of the PEP is ultimately theresponsibility of the Steering Council, which is formally initiated byopening aSteering Council issue once the authors (and sponsor, if any)determine the PEP is ready for final review and resolution.

To expedite the process in selected cases (e.g. when a change is clearlybeneficial and ready to be accepted, but the PEP hasn’t been formally submittedfor review yet), the Steering Council may also initiate a PEP review, firstnotifying the PEP author(s) and giving them a chance to make revisions.

The final authority for PEP approval is the Steering Council. However, whenevera new PEP is put forward, any core developer who believes they are suitablyexperienced to make the final decision on that PEP may offer to serve as itsPEP-Delegate bynotifying the Steering Councilof their intent. If the Steering Council approves their offer,the PEP-Delegate will then have the authority to approve or reject that PEP.For PEPs related to the Python type system, the Typing Council (PEP 729)provides a recommendation to the Steering Council. To request such arecommendation, open an issue on theTyping Council issue tracker.

The term “PEP-Delegate” is used under the Steering Council governance modelfor the PEP’s designated decision maker,who is recorded in the “PEP-Delegate” field in the PEP’s header.The term “BDFL-Delegate” is a deprecated alias for PEP-Delegate, a legacy ofthe time when when Python was led bya BDFL.Any legacy references to “BDFL-Delegate” should be treated as equivalent to“PEP-Delegate”.

An individual offering to nominate themselves as a PEP-Delegate must notifythe relevant authors and (when present) the sponsor for the PEP, and submittheir request to the Steering Council(which can be done via anew issue ).Those taking on this responsibility are free to seekadditional guidance from the Steering Council at any time, and are also expectedto take the advice and perspectives of other core developers into account.

The Steering Council will generally approve such self-nominations by default,but may choose to decline them.Possible reasons for the Steering Council declining aself-nomination as PEP-Delegate include, but are not limited to, perceptions ofa potential conflict of interest (e.g. working for the same organisation as thePEP submitter), or simply considering another potential PEP-Delegate to bemore appropriate. If core developers (or other community members) have concernsregarding the suitability of a PEP-Delegate for any given PEP, they may askthe Steering Council to review the delegation.

If no volunteer steps forward, then the Steering Council will approach coredevelopers (and potentially other Python community members) with relevantexpertise, in an attempt to identify a candidate that is willing to serve asPEP-Delegate for that PEP. If no suitable candidate can be found, then thePEP will be marked as Deferred until one is available.

Previously appointed PEP-Delegates may choose to step down, or be asked to stepdown by the Council, in which case a new PEP-Delegate will be appointed in thesame manner as for a new PEP (including deferral of the PEP if no suitablereplacement can be found). In the event that a PEP-Delegate is asked to stepdown, this will overrule any prior acceptance or rejection of the PEP, and itwill revert to Draft status.

When such standing delegations are put in place, the Steering Council willmaintain sufficient public records to allow subsequent Councils, the coredevelopers, and the wider Python community to understand the delegations thatcurrently exist, why they were put in place, and the circumstances under whichthey may no longer be needed.

For a PEP to be accepted it must meet certain minimum criteria. Itmust be a clear and complete description of the proposed enhancement.The enhancement must represent a net improvement. The proposedimplementation, if applicable, must be solid and must not complicatethe interpreter unduly. Finally, a proposed enhancement must be“pythonic” in order to be accepted by the Steering Council. (However,“pythonic” is an imprecise term; it may be defined as whatever is acceptable tothe Steering Council. This logic is intentionally circular.) SeePEP 2for standard library module acceptance criteria.

Except where otherwise approved by the Steering Council,pronouncements of PEP resolution will be posted to thePEPs category on thePython Discourse.

Once a PEP has been accepted, the reference implementation must becompleted. When the reference implementation is complete and incorporatedinto the main source code repository, the status will be changed to “Final”.

To allow gathering of additional design and interface feedback before committingto long term stability for a language feature or standard library API, a PEPmay also be marked as “Provisional”. This is short for “Provisionally Accepted”,and indicates that the proposal has been accepted for inclusion in the referenceimplementation, but additional user feedback is needed before the full designcan be considered “Final”. Unlike regular accepted PEPs, provisionally acceptedPEPs may still be Rejected or Withdrawneven after the related changes havebeen included in a Python release.

Wherever possible, it is considered preferable to reduce the scope of a proposalto avoid the need to rely on the “Provisional” status (e.g. by deferring somefeatures to later PEPs), as this status can lead to version compatibilitychallenges in the wider Python ecosystem.PEP 411 provides additional detailson potential use cases for the Provisional status.

A PEP can also be assigned the status “Deferred”. The PEP author or aneditor can assign the PEP this status when no progress is being madeon the PEP. Once a PEP is deferred, a PEP editor can reassign itto draft status.

A PEP can also be “Rejected”. Perhaps after all is said and done itwas not a good idea. It is still important to have a record of thisfact. The “Withdrawn” status is similar - it means that the PEP authorthemselves has decided that the PEP is actually a bad idea, or hasaccepted that a competing proposal is a better alternative.

When a PEP is Accepted, Rejected or Withdrawn, the PEP should be updatedaccordingly. In addition to updating the Status field, at the very leastthe Resolution header should be added with a direct linkto the relevant post making a decision on the PEP.

PEPs can also be superseded by a different PEP, rendering the originalobsolete. This is intended for Informational PEPs, where version 2 ofan API can replace version 1.

The possible paths of the status of PEPs are as follows:

PEP process flow diagram

While not shown in the diagram, “Accepted” PEPs may technically move to“Rejected” or “Withdrawn” even after acceptance. This will only occur ifthe implementation process reveals fundamental flaws in the design that werenot noticed prior to acceptance of the PEP. Unlike Provisional PEPs, thesetransitions are only permitted if the accepted proposal hasnot been includedin a Python release - released changes must instead go through the regulardeprecation process (which may require a new PEP providing the rationale forthe deprecation).

Some Informational and Process PEPs may also have a status of “Active”if they are never meant to be completed. E.g.PEP 1 (this PEP).

PEP Maintenance

In general, PEPs are no longer substantially modified after they have reachedthe Accepted, Final, Rejected or Superseded state. Once resolution is reached,a PEP is considered a historical document rather than a living specification.Formal documentation of the expected behavior should be maintained elsewhere,such as theLanguage Reference for core features, theLibrary Referencefor standard library modules or thePyPA Specifications for packaging.

If changes based on implementation experience and user feedback are made toStandards track PEPs while in the Provisional or (with SC approval) Acceptedstate, they should be noted in the PEP, such that the PEP accurately describesthe implementation at the point where it is marked Final.

Active (Informational and Process) PEPs may be updated over time to reflectchanges to development practices and other details. The precise processfollowed in these cases will depend on the nature and purpose of the PEPin question.

Occasionally, a Deferred or even a Withdrawn PEP may be resurrectedwith major updates, but it is often better to just propose a new one.

What belongs in a successful PEP?

Each PEP should have the following parts/sections:

  1. Preamble –RFC 2822 style headers containing meta-data about thePEP, including the PEP number, a short descriptive title (limitedto a maximum of 44 characters), the names, and optionally thecontact info for each author, etc.
  2. Abstract – a short (~200 word) description of the technical issuebeing addressed.
  3. Motivation – The motivation is critical for PEPs that want tochange the Python language, library, or ecosystem. It shouldclearly explain why the existing language specification isinadequate to address the problem that the PEP solves. This caninclude collecting documented support for the PEP from importantprojects in the Python ecosystem. PEP submissions withoutsufficient motivation may be rejected.
  4. Rationale – The rationale fleshes out the specification bydescribing why particular design decisions were made. It shoulddescribe alternate designs that were considered and related work,e.g. how the feature is supported in other languages.

    The rationale should provide evidence of consensus within thecommunity and discuss important objections or concerns raisedduring discussion.

  5. Specification – The technical specification should describe thesyntax and semantics of any new language feature. Thespecification should be detailed enough to allow competing,interoperable implementations for at least the current major Pythonplatforms (CPython, Jython, IronPython, PyPy).
  6. Backwards Compatibility – All PEPs that introduce backwardsincompatibilities must include a section describing theseincompatibilities and their severity. The PEP must explain how theauthor proposes to deal with these incompatibilities. PEPsubmissions without a sufficient backwards compatibility treatisemay be rejected outright.
  7. Security Implications – If there are security concerns in relationto the PEP, those concerns should be explicitly written out to makesure reviewers of the PEP are aware of them.
  8. How to Teach This – For a PEP that adds new functionality or changeslanguage behavior, it is helpful to include a section on how toteach users, new and experienced, how to apply the PEP to theirwork.

    This section may include key points and recommended documentationchanges that would help users adopt a new feature or migrate theircode to use a language change.

  9. Reference Implementation – The reference implementation must becompleted before any PEP is given status “Final”, but it need notbe completed before the PEP is accepted. While there is meritto the approach of reaching consensus on the specification andrationale before writing code, the principle of “rough consensusand running code” is still useful when it comes to resolving manydiscussions of API details.

    The final implementation must include test code and documentationappropriate for either the Python language reference or thestandard library reference.

  10. Rejected Ideas – Throughout the discussion of a PEP, various ideaswill be proposed which are not accepted. Those rejected ideas shouldbe recorded along with the reasoning as to why they were rejected.This both helps record the thought process behind the final versionof the PEP as well as preventing people from bringing up the samerejected idea again in subsequent discussions.

    In a way this section can be thought of as a breakout section of theRationale section that is focused specifically on why certain ideaswere not ultimately pursued.

  11. Open Issues – While a PEP is in draft, ideas can come up whichwarrant further discussion. Those ideas should be recorded so peopleknow that they are being thought about but do not have a concreteresolution. This helps make sure all issues required for the PEP to beready for consideration are complete and reduces people duplicatingprior discussion.
  12. Footnotes – A collection of footnotes cited in the PEP, anda place to list non-inline hyperlink targets.
  13. Copyright/license – Each new PEP must be placed under a dual license ofpublic domain andCC0-1.0-Universal (see this PEP for an example).

PEP Formats and Templates

PEPs are UTF-8 encoded text files using thereStructuredText format.reStructuredText allows for rich markup that is still quite easy toread, but also results in good-looking and functional HTML.PEP 12contains instructions and aPEP template.

The PEP text files are automaticallyconverted to HTML(via aSphinx-basedbuild system)for easieronline reading.

PEP Header Preamble

Each PEP must begin with anRFC 2822 style header preamble. The headersmust appear in the following order. Headers marked with “*” areoptional and are described below. All other headers are required.

  PEP: <pep number>  Title: <pep title>  Author: <list of authors' names and optionally, email addrs>* Sponsor: <name of sponsor>* PEP-Delegate: <PEP delegate's name>  Discussions-To: <URL of current canonical discussion thread>  Status: <Draft | Active | Accepted | Provisional | Deferred | Rejected |           Withdrawn | Final | Superseded>  Type: <Standards Track | Informational | Process>* Topic: <Governance | Packaging | Release | Typing>* Requires: <pep numbers>  Created: <date created on, in dd-mmm-yyyy format>* Python-Version: <version number>  Post-History: <dates, in dd-mmm-yyyy format,                 inline-linked to PEP discussion threads>* Replaces: <pep number>* Superseded-By: <pep number>* Resolution: <date in dd-mmm-yyyy format, linked to the acceptance/rejection post>

The Author header lists the names, and optionally the email addressesof all the authors/owners of the PEP. The format of the Author headervalues must be:

Random J. User <random@example.com>

if the email address is included, and just:

Random J. User

if the address is not given. Most PEP authors use their real name, butif you prefer a different name and use it consistently in discussionsrelated to the PEP, feel free to use it here.

If there are multiple authors, each should be on a separate linefollowingRFC 2822 continuation line conventions. Note that personalemail addresses in PEPs will be obscured as a defense against spamharvesters.

The Sponsor field records which developer (core, or otherwise approved by theSteering Council) is sponsoring the PEP. If one of the authors of the PEP is acore developer then no sponsor is necessary and thus this field should be leftout.

The PEP-Delegate field is used to record the individual appointed by theSteering Council to make the final decision on whether or not to approve orreject a PEP.

Note: The Resolution header is required for Standards Track PEPsonly. It contains a URL that should point to an email message orother web resource where the pronouncement about(i.e. approval or rejection of) the PEP is made.

The Discussions-To header provides the URL to the currentcanonical discussion thread for the PEP.For email lists, this should be a direct link to the thread in the list’sarchives, rather than just a mailto: or hyperlink to the list itself.

The Type header specifies the type of PEP: Standards Track,Informational, or Process.

The optional Topic header lists the special topic, if any,the PEP belongs under.See theTopic Index for the existing topics.

The Created header records the date that the PEP was assigned anumber, while Post-History is used to record the dates of and correspondingURLs to the Discussions-To threads for the PEP, with the former as thelinked text, and the latter as the link target.Both sets of dates should be indd-mmm-yyyy format, e.g.14-Aug-2001.

Standards Track PEPs will typically have a Python-Version header whichindicates the version of Python that the feature will be released with.Standards Track PEPs without a Python-Version header indicateinteroperability standards that will initially be supported throughexternal libraries and tools, and then potentially supplemented by a later PEPto add support to the standard library. Informational and Process PEPs donot need a Python-Version header.

PEPs may have a Requires header, indicating the PEP numbers that thisPEP depends on.

PEPs may also have a Superseded-By header indicating that a PEP hasbeen rendered obsolete by a later document; the value is the number ofthe PEP that replaces the current document. The newer PEP must have aReplaces header containing the number of the PEP that it renderedobsolete.

Auxiliary Files

PEPs may include auxiliary files such as diagrams. Such files should benamedpep-XXXX-Y.ext, where “XXXX” is the PEP number, “Y” is aserial number (starting at 1), and “ext” is replaced by the actualfile extension (e.g. “png”).

Alternatively, all support files may be placed in a subdirectory calledpep-XXXX, where “XXXX” is the PEP number. When using a subdirectory, thereare no constraints on the names used in files.

Changing Existing PEPs

Draft PEPs are freely open for discussion and proposed modification, at thediscretion of the authors, until submitted to the Steering Council orPEP-Delegate for review and resolution. Substantive content changes shouldgenerally be first proposed on the PEP’s discussion thread listed in itsDiscussions-To header, while copyedits and corrections can be submittedas aGitHub issue orGitHub pull request.PEP authors with write access to the PEP repository can update the PEPsthemselves by usinggitpush or a GitHub PR to submit their changes.For guidance on modifying other PEPs, consult thePEP Maintenance section.

See theContributing Guide for additional details, and when in doubt,please check first with the PEP author and/or a PEP editor.

Transferring PEP Ownership

It occasionally becomes necessary to transfer ownership of PEPs to anew champion. In general, it is preferable to retain the original author asa co-author of the transferred PEP, but that’s really up to theoriginal author. A good reason to transfer ownership is because theoriginal author no longer has the time or interest in updating it orfollowing through with the PEP process, or has fallen off the face ofthe ‘net (i.e. is unreachable or not responding to email). A badreason to transfer ownership is because the author doesn’t agree with thedirection of the PEP. One aim of the PEP process is to try to buildconsensus around a PEP, but if that’s not possible, an author can alwayssubmit a competing PEP.

If you are interested in assuming ownership of a PEP, you can also do this viapull request. Fork thePEP repository, make your ownership modification,and submit a pull request. You should mention both the original author and@python/pep-editors in a comment on the pull request. (If the originalauthor’s GitHub username is unknown, use email.) If the original authordoesn’t respond in a timely manner, the PEP editors will make aunilateral decision (it’s not like such decisions can’t be reversed :).

PEP Editor Responsibilities & Workflow

A PEP editor must be added to the@python/pep-editors group on GitHub andmust watch thePEP repository.

Note that developers with write access to thePEP repository mayhandle the tasks that would normally be taken care of by the PEP editors.Alternately, even developers may request assistance from PEP editors bymentioning@python/pep-editors on GitHub.

For each new PEP that comes in an editor does the following:

  • Make sure that the PEP is either co-authored by a core developer, has a coredeveloper as a sponsor, or has a sponsor specifically approved for this PEPby the Steering Council.
  • Read the PEP to check if it is ready: sound and complete. The ideasmust make technical sense, even if they don’t seem likely to beaccepted.
  • The title should accurately describe the content.
  • The file name extension is correct (i.e..rst).
  • Ensure that everyone listed as a sponsor or co-author of the PEP who has writeaccess to thePEP repository is added to.github/CODEOWNERS.
  • Skim the PEP for obvious defects in language (spelling, grammar,sentence structure, etc.), and code style (examples should conform toPEP 7 &PEP 8). Editors may correct problems themselves, but arenot required to do so (reStructuredText syntax is checked by the repo’s CI).
  • If a project is portrayed as benefiting from or supporting the PEP, make surethere is some direct indication from the project included to make the supportclear. This is to avoid a PEP accidentally portraying a project as supportinga PEP when in fact the support is based on conjecture.

If the PEP isn’t ready, an editor will send it back to the author forrevision, with specific instructions. If reST formatting is aproblem, ask the author(s) to usePEP 12 as a template and resubmit.

Once the PEP is ready for the repository, a PEP editor will:

  • Check that the author has selected a valid PEP number or assign them anumber if they have not (almost always just the next available number, butsometimes it’s a special/joke number, like 666 or 3141).

    Remember that numbers below 100 are meta-PEPs.

  • Check that the author has correctly labeled the PEP’s type(“Standards Track”, “Informational”, or “Process”), and marked itsstatus as “Draft”.
  • Ensure all CI build and lint checks pass without errors,and there are no obvious issues in the rendered preview output.
  • Merge the new (or updated) PEP.
  • Inform the author of the next steps (open a discussion thread andupdate the PEP with it, post an announcement, etc).

Updates to existing PEPs should be submitted as aGitHub pull request.

Many PEPs are written and maintained by developers with write accessto the Python codebase. The PEP editors monitor the PEP repositoryfor changes, and correct any structure, grammar, spelling, ormarkup mistakes they see.

PEP editors don’t pass judgment on PEPs. They merely do theadministrative & editorial part (which is generally a low volume task).

Resources:

Copyright

This document is placed in the public domain or under theCC0-1.0-Universal license, whichever is more permissive.


Source:https://github.com/python/peps/blob/main/peps/pep-0001.rst

Last modified:2024-10-17 13:14:44 GMT


[8]ページ先頭

©2009-2025 Movatter.jp