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
bf1ad801
Commit
bf1ad801
authored
May 14, 2003
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forward slash warnings now only occur for potentially valid LaTeX commands.
(Idea contributed by Anthony Baxter.)
parent
b079fd09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
Tools/scripts/texcheck.py
Tools/scripts/texcheck.py
+8
-8
No files found.
Tools/scripts/texcheck.py
View file @
bf1ad801
...
...
@@ -16,7 +16,6 @@ Command line usage:
Options:
-m Munge parenthesis and brackets. [0,n) would normally mismatch.
-k keyword: Keyword is a valid LaTeX command. Do not include the backslash.
-f: Forward-slash warnings suppressed.
-d: Delimiter check only (useful for non-LaTeX files).
-h: Help
-s lineno: Start at lineno (useful for skipping complex sections).
...
...
@@ -75,9 +74,8 @@ def checkit(source, opts, morecmds=[]):
Opts is a mapping of options to option values if any:
-m munge parenthesis and brackets
-f forward slash warnings to be skipped
-d delimiters only checking
-v verbose listing o
n
delimiters
-v verbose listing o
f
delimiters
-s lineno: linenumber to start scan (default is 1).
Morecmds is a sequence of LaTeX commands (without backslashes) that
...
...
@@ -85,6 +83,7 @@ def checkit(source, opts, morecmds=[]):
"""
texcmd
=
re
.
compile
(
r'\\[A-Za-z]+'
)
falsetexcmd
=
re
.
compile
(
r'\
/([A-Z
a-z]+)'
)
# Mismarked with forward slash
validcmds
=
sets
.
Set
(
cmdstr
.
split
())
for
cmd
in
morecmds
:
...
...
@@ -114,10 +113,11 @@ def checkit(source, opts, morecmds=[]):
for
lineno
,
line
in
izip
(
count
(
startline
),
islice
(
source
,
startline
-
1
,
None
)):
line
=
line
.
rstrip
()
if
'/'
in
line
and
'-f'
not
in
opts
and
'-d'
not
in
opts
:
# Warn whenever forward slashes encountered
line
=
line
.
rstrip
()
print
'Warning, forward slash on line %d: %s'
%
(
lineno
,
line
)
if
'/'
in
line
and
'-d'
not
in
opts
:
# Warn whenever forward slashes encountered with a LaTeX command
for
cmd
in
falsetexcmd
.
findall
(
line
):
if
'
\
\
'
+
cmd
in
validcmds
:
print
'Warning, forward slash used on line %d with cmd: /%s'
%
(
lineno
,
cmd
)
if
'-d'
not
in
opts
:
# Validate commands
...
...
@@ -179,7 +179,7 @@ def checkit(source, opts, morecmds=[]):
def main(args=None):
if args is None:
args = sys.argv[1:]
optitems, arglist = getopt.getopt(args, "k:m
f
dhs:v")
optitems, arglist = getopt.getopt(args, "k:mdhs:v")
opts = dict(optitems)
if '
-
h
' in opts or args==[]:
print __doc__
...
...
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