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
1688f378
Commit
1688f378
authored
Sep 01, 2000
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rob Hooft, Moshe Zadka: converted to 4 space indents and re instead of regex.
parent
f6f6fa23
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
78 additions
and
72 deletions
+78
-72
Tools/scripts/eptags.py
Tools/scripts/eptags.py
+48
-43
Tools/scripts/ptags.py
Tools/scripts/ptags.py
+30
-29
No files found.
Tools/scripts/eptags.py
View file @
1688f378
#! /usr/bin/env python
"""Create a TAGS file for Python programs, usable with GNU Emacs.
# eptags
#
# Create a TAGS file for Python programs, usable with GNU Emacs (version 18).
# Tagged are:
# - functions (even inside other defs or classes)
# - classes
# Warns about files it cannot open.
# No warnings about duplicate tags.
usage: eptags pyfiles...
import
sys
import
regex
The output TAGS file is usable with Emacs version 18, 19, 20.
Tagged are:
- functions (even inside other defs or classes)
- classes
def
main
():
outfp
=
open
(
'TAGS'
,
'w'
)
args
=
sys
.
argv
[
1
:]
for
file
in
args
:
treat_file
(
file
,
outfp
)
eptags warns about files it cannot open.
eptags will not give warnings about duplicate tags.
BUGS:
Because of tag duplication (methods with the same name in different
classes), TAGS files are not very useful for most object-oriented
python projects.
"""
import
sys
,
re
expr
=
'^[
\
t
]*
\
(de
f
\
|cl
a
ss
\
)[
\
t]+
\
([
a
-zA-Z0-9_]+
\
)[
\
t]*[:
(]'
matcher
=
re
gex
.
compile
(
expr
)
expr
=
r'^[ \t]*(def|class)[ \t]+([a-zA-Z_][a-zA-Z0-9_]*)[ \t]*[:\
(]
'
matcher = re.compile(expr)
def treat_file(file, outfp):
"""Append tags found in file named '
file
' to the open file '
outfp
'"""
try:
fp = open(file, 'r')
except:
print
'Cannot open'
,
file
sys.stderr.write('
Cannot
open
%
s
\
n
'%file)
return
charno = 0
lineno = 0
...
...
@@ -35,16 +36,20 @@ def treat_file(file, outfp):
line = fp.readline()
if not line: break
lineno = lineno + 1
if
matcher
.
search
(
line
)
>=
0
:
(
a
,
b
),
(
a1
,
b1
),
(
a2
,
b2
)
=
matcher
.
regs
[:
3
]
name
=
line
[
a2
:
b2
]
pat
=
line
[
a
:
b
]
tag
=
pat
+
'
\
177
'
+
`lineno`
+
','
+
`charno`
+
'
\
n
'
tags
.
append
((
name
,
tag
))
m = matcher.search(line)
if m:
tag = m.group(0) + '
\
177
%
d
,
%
d
\
n
'%(lineno,charno)
tags.append(tag)
size = size + len(tag)
charno = charno + len(line)
outfp
.
write
(
'
\
f
\
n
'
+
file
+
','
+
`size`
+
'
\
n
'
)
for
name
,
tag
in
tags
:
outfp.write('
\
f
\
n
%
s
,
%
d
\
n
'%(file,size)
)
for
tag in tags:
outfp.write(tag)
main
()
def main():
outfp = open('
TAGS
', '
w
')
for file in sys.argv[1:]:
treat_file(file, outfp)
if __name__=="__main__":
main()
Tools/scripts/ptags.py
View file @
1688f378
...
...
@@ -10,9 +10,7 @@
# Warns about files it cannot open.
# No warnings about duplicate tags.
import
sys
import
regex
import
os
import
sys
,
re
,
os
tags
=
[]
# Modified global variable!
...
...
@@ -25,26 +23,29 @@ def main():
for
s
in
tags
:
fp
.
write
(
s
)
expr
=
'^[
\
t
]*
\
(de
f
\
|cl
a
ss
\
)[
\
t]+
\
([
a
-zA-Z0-9_]+
\
)[
\
t]*[:
(]'
matcher
=
re
gex
.
compile
(
expr
)
expr
=
'^[
\
t
]*
(def|class)[
\
t
]+([a-zA-Z0-9_]+)[
\
t
]*[:
\
(]
'
matcher = re.compile(expr)
def treat_file(file):
try:
fp = open(file, 'r')
except:
print
'Cannot open'
,
file
sys.stderr.write('
Cannot
open
%
s
\
n
' % file)
return
base = os.path.basename(file)
if
base
[
-
3
:]
==
'.py'
:
base
=
base
[:
-
3
]
if base[-3:] == '
.
py
':
base = base[:-3]
s = base + '
\
t
' + file + '
\
t
' + '
1
\
n
'
tags.append(s)
while 1:
line = fp.readline()
if
not
line
:
break
if
matcher
.
search
(
line
)
>=
0
:
(
a
,
b
),
(
a1
,
b1
),
(
a2
,
b2
)
=
matcher
.
regs
[:
3
]
name
=
line
[
a2
:
b2
]
s
=
name
+
'
\
t
'
+
file
+
'
\
t
/^'
+
line
[
a
:
b
]
+
'/
\
n
'
if not line:
break
m = matcher.match(line)
if m:
content = m.group(0)
name = m.group(2)
s = name + '
\
t
' + file + '
\
t
/^
' + content + '
/
\
n
'
tags.append(s)
main()
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