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
2116d983
Commit
2116d983
authored
Feb 02, 1999
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make \versionadded and \versionchanged less prominant -- neither bold
nor a separate paragraph.
parent
d0bceeeb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
Doc/perl/python.perl
Doc/perl/python.perl
+2
-2
Doc/texinputs/python.sty
Doc/texinputs/python.sty
+3
-3
No files found.
Doc/perl/python.perl
View file @
2116d983
...
...
@@ -219,14 +219,14 @@ sub do_cmd_versionadded{
# one parameter: \versionadded{version}
local
(
$_
)
=
@_
;
my
$release
=
next_argument
();
return
"
<b>New in version
$release
.</b><p>
"
.
$_
;
return
"
\n
New in version
$release
.
\n
"
.
$_
;
}
sub
do_cmd_versionchanged
{
# one parameter: \versionchanged{version}
local
(
$_
)
=
@_
;
my
$release
=
next_argument
();
return
"
<b>Changed in version
$release
.</b><p>
"
.
$_
;
return
"
\n
Changed in version
$release
.
\n
"
.
$_
;
}
# file and samp are at the end of this file since they screw up fontlock.
...
...
Doc/texinputs/python.sty
View file @
2116d983
...
...
@@ -746,15 +746,15 @@
% This should be used to mark things which have been added to the
% development tree but that aren't in the release, but are documented.
% This allows release of documentation that already includes updated
% descriptions.
% descriptions.
Place at end of descriptor environment.
%
% Example:
% \versionadded{1.5.2}
%
\newcommand
{
\versionadded
}
[1]
{
%
\strong
{
New in version #1.
}
\par
}
{
New in version #1.
}
}
\newcommand
{
\versionchanged
}
[1]
{
%
\strong
{
Changed in version #1.
}
\par
}
{
Changed in version #1.
}
}
% Tables.
...
...
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