[issue12307] Inconsistent formatting of section titles in PEP 0

Eric Snow report at bugs.python.org
Fri Jun 10 07:50:38 CEST 2011


New submission from Eric Snow <ericsnowcurrently at gmail.com>:

The formatting for the title of the "Index by Category" section is different from the formatting for the title of the "Numerical Index" section.  Not sure if there is a reason behind this, but here's a patch:

diff --git a/pep0/output.py b/pep0/output.py
--- a/pep0/output.py
+++ b/pep0/output.py
@@ -169,7 +169,7 @@
         print>>output, unicode(pep)
     print>>output
     print>>output
-    print>>output, u" Numerical Index"
+    print>>output, u"Numerical Index"
     print>>output
     write_column_headers(output)
     prev_pep = 0

----------
messages: 138050
nosy: ericsnow
priority: normal
severity: normal
status: open
title: Inconsistent formatting of section titles in PEP 0
versions: Python 3.3

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue12307>
_______________________________________


More information about the Python-bugs-list mailing list