This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.snow
Recipients eric.snow
Date 2011-06-10.05:50:37
SpamBayes Score 5.538932e-05
Marked as misclassified No
Message-id <1307685038.6.0.993227913919.issue12307@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2011-06-10 05:50:38eric.snowsetrecipients: + eric.snow
2011-06-10 05:50:38eric.snowsetmessageid: <1307685038.6.0.993227913919.issue12307@psf.upfronthosting.co.za>
2011-06-10 05:50:38eric.snowlinkissue12307 messages
2011-06-10 05:50:37eric.snowcreate