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
b2fda239
Commit
b2fda239
authored
Oct 30, 2010
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
close files correctly
parent
bbb0412a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
Lib/trace.py
Lib/trace.py
+12
-11
No files found.
Lib/trace.py
View file @
b2fda239
...
...
@@ -404,16 +404,16 @@ def find_strings(filename, encoding=None):
# If the first token is a string, then it's the module docstring.
# Add this special case so that the test in the loop passes.
prev_ttype
=
token
.
INDENT
f
=
open
(
filename
,
encoding
=
encoding
)
for
ttype
,
tstr
,
start
,
end
,
line
in
tokenize
.
generate_tokens
(
f
.
readline
):
if
ttype
==
token
.
STRING
:
if
prev_ttype
==
token
.
INDENT
:
sline
,
scol
=
start
eline
,
ecol
=
end
for
i
in
range
(
sline
,
eline
+
1
):
d
[
i
]
=
1
prev_ttype
=
ttype
f
.
close
()
with
open
(
filename
,
encoding
=
encoding
)
as
f
:
tok
=
tokenize
.
generate_tokens
(
f
.
readline
)
for
ttype
,
tstr
,
start
,
end
,
line
in
tok
:
if
ttype
==
token
.
STRING
:
if
prev_ttype
==
token
.
INDENT
:
sline
,
scol
=
start
eline
,
ecol
=
end
for
i
in
range
(
sline
,
eline
+
1
):
d
[
i
]
=
1
prev_ttype
=
ttype
return
d
def
find_executable_linenos
(
filename
):
...
...
@@ -421,7 +421,8 @@ def find_executable_linenos(filename):
try
:
with
io
.
FileIO
(
filename
,
'r'
)
as
file
:
encoding
,
lines
=
tokenize
.
detect_encoding
(
file
.
readline
)
prog
=
open
(
filename
,
"r"
,
encoding
=
encoding
).
read
()
with
open
(
filename
,
"r"
,
encoding
=
encoding
)
as
f
:
prog
=
f
.
read
()
except
IOError
as
err
:
print
((
"Not printing coverage data for %r: %s"
%
(
filename
,
err
)),
file
=
sys
.
stderr
)
...
...
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