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
897d12bb
Commit
897d12bb
authored
Jul 27, 1998
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do_cmd_versionadded(),
do_cmd_versionchanged(): Support for new macros.
parent
af958c7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
Doc/perl/python.perl
Doc/perl/python.perl
+14
-0
No files found.
Doc/perl/python.perl
View file @
897d12bb
...
...
@@ -225,6 +225,20 @@ sub do_cmd_deprecated{
"
<b>Deprecated since release
$release
.</b>
\n
$reason
<p>
"
.
$_
;
}
sub
do_cmd_versionadded
{
# one parameter: \versionadded{version}
local
(
$_
)
=
@_
;
my
$release
=
next_argument
();
"
<b>New in version
$release
.</b><p>
"
.
$_
;
}
sub
do_cmd_versionchanged
{
# one parameter: \versionchanged{version}
local
(
$_
)
=
@_
;
my
$release
=
next_argument
();
"
<b>Changed in version
$release
.</b><p>
"
.
$_
;
}
# file and samp are at the end of this file since they screw up fontlock.
# index commands
...
...
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