Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d07868ae
Commit
d07868ae
authored
May 14, 1998
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for \developer, \developers, \developersaddress.
parent
6df93ef9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
Doc/perl/python.perl
Doc/perl/python.perl
+8
-4
No files found.
Doc/perl/python.perl
View file @
d07868ae
...
...
@@ -68,7 +68,7 @@ sub do_cmd_NULL{ '<tt>NULL</tt>' . @_[0]; }
sub
do_cmd_e
{
'
\
'
.
@_
[
0
];
}
$
AUTHO
R_ADDRESS
=
'';
$
DEVELOPE
R_ADDRESS
=
'';
$PYTHON_VERSION
=
'';
sub
do_cmd_version
{
$PYTHON_VERSION
.
@_
[
0
];
}
...
...
@@ -80,10 +80,14 @@ sub do_cmd_release{
sub
do_cmd_authoraddress
{
local
(
$_
)
=
@_
;
$
AUTHO
R_ADDRESS
=
next_argument
();
$
DEVELOPE
R_ADDRESS
=
next_argument
();
$_
;
}
sub
do_cmd_developer
{
do_cmd_author
(
@_
[
0
]);
}
sub
do_cmd_developers
{
do_cmd_author
(
@_
[
0
]);
}
sub
do_cmd_developersaddress
{
do_cmd_authoraddress
(
@_
[
0
]);
}
sub
do_cmd_hackscore
{
local
(
$_
)
=
@_
;
next_argument
();
...
...
@@ -783,8 +787,8 @@ sub do_cmd_maketitle {
}
else
{
write_warnings
("
\n
There is no author for this document.
");
}
if
(
$t_institute
)
{
$the_title
.=
"
\n
<p>
$t_institute
</p>
";}
if
(
$
AUTHO
R_ADDRESS
)
{
$the_title
.=
"
\n
<p>
$
AUTHO
R_ADDRESS
</p>
";}
if
(
$
DEVELOPE
R_ADDRESS
)
{
$the_title
.=
"
\n
<p>
$
DEVELOPE
R_ADDRESS
</p>
";}
if
(
$t_affil
)
{
$the_title
.=
"
\n
<p><i>
$t_affil
</i></p>
";}
if
(
$t_date
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment