From: Fred Drake Date: Wed, 25 Oct 2000 16:15:13 +0000 (+0000) Subject: Rename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number for X-Git-Tag: v2.1a1~823 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d04592a46bc2fae49299ef6cf996cc553cbbad2c;p=python Rename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number for whatever is being documented, not necessarily Python. (These tools are also used for the How-To documents, etc.) --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 476ef662a9..00667034ce 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -103,13 +103,13 @@ sub do_cmd_e{ '\' . @_[0]; } $DEVELOPER_ADDRESS = ''; $SHORT_VERSION = ''; -$PYTHON_VERSION = ''; +$PACKAGE_VERSION = ''; -sub do_cmd_version{ $PYTHON_VERSION . @_[0]; } +sub do_cmd_version{ $PACKAGE_VERSION . @_[0]; } sub do_cmd_shortversion{ $SHORT_VERSION . @_[0]; } sub do_cmd_release{ local($_) = @_; - $PYTHON_VERSION = next_argument(); + $PACKAGE_VERSION = next_argument(); return $_; } @@ -1024,6 +1024,9 @@ sub fix_font{ elsif ($font eq 'kbd') { $font = 'kbd'; } + elsif ($font eq 'programopt') { + $font = 'b'; + } return $font; } @@ -1270,8 +1273,8 @@ sub make_my_titlepage() { } if ($t_date) { $the_title .= "\n

$t_date"; - if ($PYTHON_VERSION) { - $the_title .= "
Release $PYTHON_VERSION"; + if ($PACKAGE_VERSION) { + $the_title .= "
Release $PACKAGE_VERSION"; } $the_title .= "

" }