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
fb80cd91
Commit
fb80cd91
authored
Nov 24, 2007
by
Skip Montanaro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert change that breaks test_doctest (which I forgot to run - sorry)
parent
5a001c0c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
13 deletions
+0
-13
Lib/doctest.py
Lib/doctest.py
+0
-11
Lib/trace.py
Lib/trace.py
+0
-2
No files found.
Lib/doctest.py
View file @
fb80cd91
...
...
@@ -320,19 +320,8 @@ class _OutputRedirectingPdb(pdb.Pdb):
"""
def
__init__
(
self
,
out
):
self
.
__out
=
out
self
.
__debugger_used
=
False
pdb
.
Pdb
.
__init__
(
self
,
stdout
=
out
)
def
set_trace
(
self
):
self
.
__debugger_used
=
True
pdb
.
Pdb
.
set_trace
(
self
)
def
set_continue
(
self
):
# Calling set_continue unconditionally would break unit test
# coverage reporting, as Bdb.set_continue calls sys.settrace(None).
if
self
.
__debugger_used
:
pdb
.
Pdb
.
set_continue
(
self
)
def
trace_dispatch
(
self
,
*
args
):
# Redirect stdout to the given stream.
save_stdout
=
sys
.
stdout
...
...
Lib/trace.py
View file @
fb80cd91
...
...
@@ -286,8 +286,6 @@ class CoverageResults:
# skip some "files" we don't care about...
if
filename
==
"<string>"
:
continue
if
filename
.
startswith
(
"<doctest "
):
continue
if
filename
.
endswith
((
".pyc"
,
".pyo"
)):
filename
=
filename
[:
-
1
]
...
...
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