2001-08-14 19:59:22 -04:00
|
|
|
|
PEP: 9
|
|
|
|
|
Title: Sample PEP Template
|
|
|
|
|
Version: $Revision$
|
|
|
|
|
Last-Modified: $Date$
|
2002-07-30 12:23:15 -04:00
|
|
|
|
Author: Barry A. Warsaw <barry@zope.com>
|
2001-08-14 19:59:22 -04:00
|
|
|
|
Status: Active
|
|
|
|
|
Type: Informational
|
|
|
|
|
Created: 14-Aug-2001
|
|
|
|
|
Post-History:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
|
|
|
|
|
|
This PEP provides a boilerplate or sample template for creating
|
|
|
|
|
your own PEPs. This should make it easy for you to conform your
|
|
|
|
|
own PEPs to the style outlined in PEP 1, PEP Guidelines[1].
|
|
|
|
|
|
2001-11-13 14:12:03 -05:00
|
|
|
|
Note: if you are reading this PEP via the web, you should first
|
|
|
|
|
grab the plain text version in order to complete the steps below.
|
|
|
|
|
DO NOT USE THE HTML FILE AS YOUR TEMPLATE!
|
|
|
|
|
|
|
|
|
|
To get the plain text version of this file, look at the top of the
|
|
|
|
|
page and click on the link titled "PEP Source".
|
|
|
|
|
|
2001-08-14 19:59:22 -04:00
|
|
|
|
|
|
|
|
|
Rationale
|
|
|
|
|
|
|
|
|
|
PEP submissions come in a wide variety of forms, not all adhering
|
|
|
|
|
to the style guidelines set forth in PEP 1. Use this template, in
|
|
|
|
|
conjunction with the prose guidelines in PEP 1, to ensure that
|
|
|
|
|
your PEP submission won't get automatically rejected because of
|
|
|
|
|
form.
|
|
|
|
|
|
2001-08-15 11:28:57 -04:00
|
|
|
|
To use this template you must first decide whether your PEP is
|
|
|
|
|
going to be Informational or Standards Track. Most PEPs are
|
|
|
|
|
Standards Track because they propose a new feature for the Python
|
|
|
|
|
language or standard library. When in doubt, read PEP 1 for
|
|
|
|
|
details.
|
|
|
|
|
|
|
|
|
|
Once you've decided which type of PEP yours is going to be, follow
|
|
|
|
|
the directions in the appropriate section below.
|
|
|
|
|
|
2001-08-14 19:59:22 -04:00
|
|
|
|
|
|
|
|
|
How to Use This Template for Standard Track PEPs
|
|
|
|
|
|
2001-08-15 11:28:57 -04:00
|
|
|
|
- Make a copy of this file and perform the following edits.
|
2001-08-14 19:59:22 -04:00
|
|
|
|
|
|
|
|
|
- replace the "PEP: 9" header with "PEP: XXX" since you don't yet
|
|
|
|
|
have a PEP number assignment.
|
|
|
|
|
|
|
|
|
|
- Change the Title: header to the title of your PEP.
|
|
|
|
|
|
|
|
|
|
- Leave the Version: and Last-Modified: headers alone; we'll take
|
|
|
|
|
care of those when we check your PEP into CVS.
|
|
|
|
|
|
2002-07-30 12:23:15 -04:00
|
|
|
|
- Change the Author: header to include your name, and optionally
|
|
|
|
|
your email address. Be sure to follow the format carefully:
|
|
|
|
|
your name must appear first, and it must not be contained in
|
|
|
|
|
parentheses. Your email address may appear second (it can also
|
|
|
|
|
be omitted) and if it appears, it must appear in angle brackets.
|
2001-08-14 19:59:22 -04:00
|
|
|
|
|
|
|
|
|
- If there is a mailing list for discussion of your new feature,
|
|
|
|
|
add a Discussions-To: header right after the Author: header.
|
|
|
|
|
You should not add a Discussions-To: header if the mailing list
|
|
|
|
|
to be used is either python-list@python.org or
|
|
|
|
|
python-dev@python.org, or if discussions should be sent to you
|
|
|
|
|
directly.
|
|
|
|
|
|
|
|
|
|
- Change the Status: header to "Draft".
|
|
|
|
|
|
|
|
|
|
- Change the Type: header to "Standards Track".
|
|
|
|
|
|
|
|
|
|
- If your feature depends on the acceptance of some other currently
|
|
|
|
|
in-development PEP, add a Requires: header right after the Type:
|
|
|
|
|
header. The value should be the PEP number of the PEP yours
|
|
|
|
|
depends on. Don't add this header if your dependent feature is
|
|
|
|
|
described in a Final PEP.
|
|
|
|
|
|
|
|
|
|
- Change the Created: header to today's date. Be sure to follow
|
|
|
|
|
the format carefully: it must be in dd-mmm-yyyy format, where
|
2001-09-07 18:23:29 -04:00
|
|
|
|
the mmm is the 3 English letter month abbreviation, e.g. one of
|
|
|
|
|
Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec.
|
2001-08-14 19:59:22 -04:00
|
|
|
|
|
|
|
|
|
- After the Created: header, add a Python-Version: header and set
|
|
|
|
|
the value to the next planned version of Python, i.e. the one
|
|
|
|
|
your new feature will hopefully make its first appearance in.
|
|
|
|
|
Do not use an alpha or beta release designation here. Thus, if
|
|
|
|
|
the last version of Python was 2.2 alpha 1 and you're hoping to
|
|
|
|
|
get your new feature into Python 2.2, set the header to:
|
|
|
|
|
|
|
|
|
|
Python-Version: 2.2
|
|
|
|
|
|
|
|
|
|
- Leave Post-History: alone for now; you'll add dates to this
|
2001-09-07 18:23:29 -04:00
|
|
|
|
header each time you post your PEP to python-list@python.org or
|
|
|
|
|
python-dev@python.org. E.g. if you posted your PEP to the lists
|
|
|
|
|
on August 14, 2001 and September 3, 2001, the Post-History:
|
|
|
|
|
header would look like:
|
|
|
|
|
|
|
|
|
|
Post-History: 14-Aug-2001, 03-Sept-2001
|
2001-08-14 19:59:22 -04:00
|
|
|
|
|
2001-09-07 18:45:52 -04:00
|
|
|
|
You must manually add new dates and check them in. If you don't
|
|
|
|
|
have check-in privileges, send your changes to the PEP editor.
|
|
|
|
|
|
2001-08-14 19:59:22 -04:00
|
|
|
|
- Add a Replaces: header if your PEP describes a feature that will
|
|
|
|
|
replace a feature described in some Final PEP. Usually you
|
|
|
|
|
won't need to add this header. It's also unlikely that you'll
|
|
|
|
|
ever add a Replaced-By: header.
|
|
|
|
|
|
|
|
|
|
- Now write your abstract, rationale, and other content for your
|
|
|
|
|
PEP, replacing all this gobbledygook with your own text. Be
|
|
|
|
|
sure to adhere to the PEP 1 style guidelines, specifically on
|
|
|
|
|
the prohibition of tab characters and the indentation
|
|
|
|
|
requirements.
|
|
|
|
|
|
|
|
|
|
- Update your References and Copyright section. Usually you'll
|
|
|
|
|
place your PEP into the public domain, in which case just leave
|
|
|
|
|
the Copyright section alone. Alternatively, you can use the
|
|
|
|
|
Open Publication License[2], but public domain is still strongly
|
|
|
|
|
preferred.
|
|
|
|
|
|
|
|
|
|
- Leave the little Emacs turd at the end of this file alone,
|
|
|
|
|
including the formfeed character (^L, or \f).
|
|
|
|
|
|
|
|
|
|
- Send your PEP submission to the PEP editor, along with $100k in
|
|
|
|
|
unmarked pennies. (Just kidding, I wanted to see if you were
|
|
|
|
|
still awake. :)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
How to Use This Template for Informational PEPs
|
|
|
|
|
|
2001-08-15 11:28:57 -04:00
|
|
|
|
- Make a copy of this file and perform the following edits.
|
2001-08-14 19:59:22 -04:00
|
|
|
|
|
|
|
|
|
- replace the "PEP: 9" header with "PEP: XXX" since you don't yet
|
|
|
|
|
have a PEP number assignment.
|
|
|
|
|
|
|
|
|
|
- Change the Title: header to the title of your PEP.
|
|
|
|
|
|
|
|
|
|
- Leave the Version: and Last-Modified: headers alone; we'll take
|
|
|
|
|
care of those when we check your PEP into CVS.
|
|
|
|
|
|
|
|
|
|
- Change the Author: header to include your email address and
|
|
|
|
|
name. Be sure to follow the format carefully: your email
|
|
|
|
|
address must appear first, and it should not be contained in
|
|
|
|
|
angle brackets. Your full name should appear second and it
|
|
|
|
|
should appear in parentheses.
|
|
|
|
|
|
|
|
|
|
- If there is a mailing list for discussion of your new feature,
|
|
|
|
|
add a Discussions-To: header right after the Author: header.
|
|
|
|
|
You should not add a Discussions-To: header if the mailing list
|
|
|
|
|
to be used is either python-list@python.org or
|
|
|
|
|
python-dev@python.org, or if discussions should be sent to you
|
|
|
|
|
directly. Most Information PEPs don't have a Discussions-To:
|
|
|
|
|
header.
|
|
|
|
|
|
|
|
|
|
- Change the Status: header to "Active".
|
|
|
|
|
|
|
|
|
|
- Change the Type: header to "Informational".
|
|
|
|
|
|
|
|
|
|
- Change the Created: header to today's date. Be sure to follow
|
|
|
|
|
the format carefully: it must be in dd-mmm-yyyy format, where
|
|
|
|
|
the mmm is the 3 letter month abbreviation.
|
|
|
|
|
|
|
|
|
|
- Leave Post-History: alone for now; you'll add dates to this
|
|
|
|
|
header after your PEP has been assigned a number and you've
|
|
|
|
|
posted your PEP to python-list@python.org or
|
|
|
|
|
python-dev@python.org.
|
|
|
|
|
|
|
|
|
|
- Now write your abstract, rationale, and other content for your
|
|
|
|
|
PEP, replacing all this gobbledygook with your own text. Be
|
|
|
|
|
sure to adhere to the PEP 1 style guidelines, specifically on
|
|
|
|
|
the prohibition of tab characters and the indentation
|
|
|
|
|
requirements.
|
|
|
|
|
|
|
|
|
|
- Update your References and Copyright section. Usually you'll
|
|
|
|
|
place your PEP into the public domain, in which case just leave
|
|
|
|
|
the Copyright section alone. Alternatively, you can use the
|
|
|
|
|
Open Publication License[2], but public domain is still strongly
|
|
|
|
|
preferred.
|
|
|
|
|
|
|
|
|
|
- Leave the little Emacs turd at the end of this file alone,
|
|
|
|
|
including the formfeed character (^L, or \f).
|
|
|
|
|
|
|
|
|
|
- Send your PEP submission to the PEP editor, along with $100k in
|
|
|
|
|
unmarked pennies. (Just kidding, I wanted to see if you were
|
|
|
|
|
still awake. :)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
References
|
|
|
|
|
|
|
|
|
|
[1] PEP 1, PEP Purpose and Guidelines
|
|
|
|
|
http://www.python.org/peps/pep-0001.html
|
|
|
|
|
|
|
|
|
|
[2] http://www.opencontent.org/openpub/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Copyright
|
|
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
2002-04-01 10:59:19 -05:00
|
|
|
|
sentence-end-double-space: t
|
2001-09-07 18:23:29 -04:00
|
|
|
|
fill-column: 70
|
2001-08-14 19:59:22 -04:00
|
|
|
|
End:
|