Remove debugging print.

This commit is contained in:
Mark Dickinson 2013-08-03 17:14:50 +01:00
parent fb0ffa12fc
commit d41102dac8

View file

@ -75,7 +75,6 @@ def test_wave_write_context_manager_calls_close(self):
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):