2008-12-30 12:44:55 -05:00
|
|
|
|
# -*- coding: utf-8 -*-
|
2018-07-10 09:10:43 -04:00
|
|
|
|
text_type = str
|
2008-12-30 12:44:55 -05:00
|
|
|
|
title_length = 55
|
2018-07-10 09:10:43 -04:00
|
|
|
|
author_length = 40
|
|
|
|
|
table_separator = "== ==== " + "="*title_length + " " + "="*author_length
|
|
|
|
|
column_format = (
|
|
|
|
|
'%(type)1s%(status)1s %(number)4s %(title)-{title_length}s %(authors)-s'
|
|
|
|
|
).format(title_length=title_length)
|
2008-12-30 12:44:55 -05:00
|
|
|
|
|
2018-07-10 09:10:43 -04:00
|
|
|
|
header = """\
|
|
|
|
|
PEP: 0
|
2008-12-30 12:44:55 -05:00
|
|
|
|
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
|
2018-07-10 09:10:43 -04:00
|
|
|
|
Author: python-dev <python-dev@python.org>
|
2008-12-30 12:44:55 -05:00
|
|
|
|
Status: Active
|
|
|
|
|
Type: Informational
|
2018-07-10 09:10:43 -04:00
|
|
|
|
Content-Type: text/x-rst
|
2008-12-30 12:44:55 -05:00
|
|
|
|
Created: 13-Jul-2000
|
|
|
|
|
"""
|
|
|
|
|
|
2018-07-10 09:10:43 -04:00
|
|
|
|
intro = """\
|
|
|
|
|
This PEP contains the index of all Python Enhancement Proposals,
|
|
|
|
|
known as PEPs. PEP numbers are assigned by the PEP editors, and
|
|
|
|
|
once assigned are never changed [1_]. The version control history [2_] of
|
|
|
|
|
the PEP texts represent their historical record.
|
2008-12-30 12:44:55 -05:00
|
|
|
|
"""
|
|
|
|
|
|
2018-07-10 09:10:43 -04:00
|
|
|
|
references = """\
|
|
|
|
|
.. [1] PEP 1: PEP Purpose and Guidelines
|
|
|
|
|
.. [2] View PEP history online: https://github.com/python/peps
|
2008-12-30 12:44:55 -05:00
|
|
|
|
"""
|
|
|
|
|
|
2018-07-10 09:10:43 -04:00
|
|
|
|
footer = """\
|
|
|
|
|
..
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
sentence-end-double-space: t
|
|
|
|
|
fill-column: 70
|
|
|
|
|
coding: utf-8
|
|
|
|
|
End:\
|
|
|
|
|
"""
|