summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-06-28 21:06:08 (GMT)
committerFred Drake <fdrake@acm.org>2000-06-28 21:06:08 (GMT)
commit7388f730a3e28696867e490ff12d0ea3153fad57 (patch)
tree32ab35574db3edbf56f7f2b0360486083dfc5228 /Doc
parenteceebb87d925c36f2df99d2bd470354f16f45e39 (diff)
downloadcpython-7388f730a3e28696867e490ff12d0ea3153fad57.zip
cpython-7388f730a3e28696867e490ff12d0ea3153fad57.tar.gz
cpython-7388f730a3e28696867e490ff12d0ea3153fad57.tar.bz2
Support constant as a font name for the first column of a table using the
tableii & friends markup family.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/perl/python.perl3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl
index 8606ece..6c0cddb 100644
--- a/Doc/perl/python.perl
+++ b/Doc/perl/python.perl
@@ -943,6 +943,9 @@ sub fix_font{
elsif ($font eq 'member') {
$font = 'tt class="member"';
}
+ elsif ($font eq 'constant') {
+ $font = 'tt class="constant"';
+ }
return $font;
}