diff options
author | Fred Drake <fdrake@acm.org> | 2000-12-14 18:36:12 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-12-14 18:36:12 (GMT) |
commit | de77bc5468d59d023bce9ae3d41a116f22de951f (patch) | |
tree | f5713320f1264bfa55574e3a6ed9738f0e2abec9 /Doc/perl/python.perl | |
parent | 3277da0f33ff8e1e7e328c0dc491b1a635894252 (diff) | |
download | cpython-de77bc5468d59d023bce9ae3d41a116f22de951f.zip cpython-de77bc5468d59d023bce9ae3d41a116f22de951f.tar.gz cpython-de77bc5468d59d023bce9ae3d41a116f22de951f.tar.bz2 |
For the title page, insert the package version number before the date.
This makes the title area more like the title are of the top-level
index, and puts the information more people are interested in first.
Diffstat (limited to 'Doc/perl/python.perl')
-rw-r--r-- | Doc/perl/python.perl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index fb1d066..ae06d76 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -1278,11 +1278,11 @@ sub make_my_titlepage() { $the_title .= "\n<p><i>$t_affil</i></p>"; } if ($t_date) { - $the_title .= "\n<p><strong>$t_date</strong>"; + $the_title .= "\n<p>"; if ($PACKAGE_VERSION) { - $the_title .= "<br><strong>Release $PACKAGE_VERSION</strong>"; + $the_title .= "<strong>Release $PACKAGE_VERSION</strong><br>\n"; } - $the_title .= "</p>" + $the_title .= "<strong>$t_date</strong></p>" } if ($t_address) { $the_title .= "\n<p>$t_address</p>"; |