diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2013-08-03 17:14:50 +0100 |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2013-08-03 17:14:50 +0100 |
commit | d41102dac858ca44220f3b609c5044ea35e2e0f3 (patch) | |
tree | 79fcc0a29533b19b9f1a4ffdf047d6cc83abf30f | |
parent | fb0ffa12fc79dfa4f97a61d9c32995551f995c1d (diff) | |
download | cpython-git-d41102dac858ca44220f3b609c5044ea35e2e0f3.tar.gz |
Remove debugging print.
-rw-r--r-- | Lib/test/test_wave.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_wave.py b/Lib/test/test_wave.py index c505fb897d..b70f917ec6 100644 --- a/Lib/test/test_wave.py +++ b/Lib/test/test_wave.py @@ -75,7 +75,6 @@ class TestWave(unittest.TestCase): with self.assertRaises(wave.Error): with wave.open(TESTFN, 'wb') as f: pass - print('in test:', f._file) with self.assertRaises(wave.Error): with open(TESTFN, 'wb') as testfile: with wave.open(testfile): |