From d41102dac858ca44220f3b609c5044ea35e2e0f3 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sat, 3 Aug 2013 17:14:50 +0100 Subject: Remove debugging print. --- Lib/test/test_wave.py | 1 - 1 file changed, 1 deletion(-) 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): -- cgit v1.2.1