diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-11 19:27:13 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-11 19:27:13 (GMT) |
commit | 03fc7799b02c5c66ce4115bb4bee290bfca1f710 (patch) | |
tree | 1d284e692b861389941a51c12dc1d92b48d14a78 /Lib/test/test_doctest.py | |
parent | 1e50a9f7cc68aefdf94ad02bc3e62fee2f447208 (diff) | |
download | cpython-03fc7799b02c5c66ce4115bb4bee290bfca1f710.zip cpython-03fc7799b02c5c66ce4115bb4bee290bfca1f710.tar.gz cpython-03fc7799b02c5c66ce4115bb4bee290bfca1f710.tar.bz2 |
Remove unnecessary import
Diffstat (limited to 'Lib/test/test_doctest.py')
-rw-r--r-- | Lib/test/test_doctest.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py index dea03d3..718f7b2 100644 --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -1562,7 +1562,6 @@ Create a docstring that we want to debug: Create some fake stdin input, to feed to the debugger: - >>> import tempfile >>> real_stdin = sys.stdin >>> sys.stdin = _FakeInput(['next', 'print(x)', 'continue']) |