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
ca675e49
Commit
ca675e49
authored
Apr 21, 1999
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do_cmd_funcline(): Remove some bogus generated stuff from the output
(some text was only intended for the index).
parent
3d815bd1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
Doc/perl/python.perl
Doc/perl/python.perl
+5
-4
No files found.
Doc/perl/python.perl
View file @
ca675e49
...
...
@@ -589,10 +589,11 @@ sub do_cmd_funcline{
local
(
$_
)
=
@_
;
my
$function_name
=
next_argument
();
my
$arg_list
=
next_argument
();
my
$idx
=
make_str_index_entry
("
<tt class=function>
$function_name
()</tt>
"
.
get_indexsubitem
());
$idx
=~
s/\(\)//
;
return
"
<dt><b>
$idx
</b> (<var>
$arg_list
</var>)
\n
<dd>
"
.
$_
;
my
$prefix
=
"
<tt class=function>
$function_name
()</tt>
";
my
$idx
=
make_str_index_entry
(
$prefix
.
get_indexsubitem
());
$prefix
=~
s/\(\)//
;
return
"
<dt><b>
$prefix
</b> (<var>
$arg_list
</var>)
\n
<dd>
"
.
$_
;
}
# Change this flag to index the opcode entries. I don't think it's very
...
...
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