From: Fred Drake
Date: Thu, 14 Dec 2000 18:36:12 +0000 (+0000)
Subject: For the title page, insert the package version number before the date.
X-Git-Tag: v2.1a1~578
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de77bc5468d59d023bce9ae3d41a116f22de951f;p=python
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.
---
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl
index fb1d0666ce..ae06d764f3 100644
--- a/Doc/perl/python.perl
+++ b/Doc/perl/python.perl
@@ -1278,11 +1278,11 @@ sub make_my_titlepage() {
$the_title .= "\n$t_affil
";
}
if ($t_date) {
- $the_title .= "\n$t_date";
+ $the_title .= "\n
";
if ($PACKAGE_VERSION) {
- $the_title .= "
Release $PACKAGE_VERSION";
+ $the_title .= "Release $PACKAGE_VERSION
\n";
}
- $the_title .= "
"
+ $the_title .= "$t_date
"
}
if ($t_address) {
$the_title .= "\n$t_address
";