diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-11-08 22:31:09 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-11-08 22:31:09 (GMT) |
commit | 7960bf9c00e3f01e1e7f4585d593cb966afb8078 (patch) | |
tree | 18057630a6283d27e937f2adb76f8d796b272655 | |
parent | d7bbbbc594544318bc6d0f28cb376a11a326c22f (diff) | |
download | cpython-7960bf9c00e3f01e1e7f4585d593cb966afb8078.zip cpython-7960bf9c00e3f01e1e7f4585d593cb966afb8078.tar.gz cpython-7960bf9c00e3f01e1e7f4585d593cb966afb8078.tar.bz2 |
And delete a useless comment.
-rw-r--r-- | Lib/doctest.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index c6677f7..0a13d77 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -351,7 +351,6 @@ class _OutputRedirectingPdb(pdb.Pdb): try: return pdb.Pdb.trace_dispatch(self, *args) finally: - # Restore stdout. sys.stdout = save_stdout # [XX] Normalize with respect to os.path.pardir? |