2008-12-30 12:44:55 -05:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
title_length = 55
|
|
|
|
|
column_format = (u' %(type)1s%(status)1s %(number)4s %(title)-' +
|
|
|
|
|
unicode(title_length) + u's %(authors)-s')
|
|
|
|
|
|
|
|
|
|
header = u"""PEP: 0
|
|
|
|
|
Title: Index of Python Enhancement Proposals (PEPs)
|
2010-09-27 15:36:11 -04:00
|
|
|
|
Version: N/A
|
2010-09-27 16:54:00 -04:00
|
|
|
|
Last-Modified: %s
|
2008-12-30 12:44:55 -05:00
|
|
|
|
Author: David Goodger <goodger@python.org>,
|
2009-01-07 22:44:48 -05:00
|
|
|
|
Barry Warsaw <barry@python.org>
|
2008-12-30 12:44:55 -05:00
|
|
|
|
Status: Active
|
|
|
|
|
Type: Informational
|
|
|
|
|
Created: 13-Jul-2000
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
intro = u"""
|
|
|
|
|
The PEP contains the index of all Python Enhancement Proposals,
|
|
|
|
|
known as PEPs. PEP numbers are assigned by the PEP Editor, and
|
2011-03-24 04:10:55 -04:00
|
|
|
|
once assigned are never changed. The Mercurial history[1] of
|
|
|
|
|
the PEP texts represent their historical record.
|
2008-12-30 12:44:55 -05:00
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
references = u"""
|
|
|
|
|
[1] View PEP history online
|
2011-03-24 04:10:55 -04:00
|
|
|
|
http://hg.python.org/peps/
|
2008-12-30 12:44:55 -05:00
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
footer = u"""
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
sentence-end-double-space: t
|
|
|
|
|
fill-column: 70
|
|
|
|
|
coding: utf-8
|
|
|
|
|
End:"""
|