diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-14 18:42:22 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-14 18:42:22 (GMT) |
commit | 79f19f9e7c1849be68bba57ee78c116714e2c5ea (patch) | |
tree | b94507a79a0fbd36d29ee7f28d0a3d63e2d56b7f /Lib/test/test_aifc.py | |
parent | 03241e801780edd967923d1cce00c2d07b208e58 (diff) | |
parent | 84d28b4ee5983bcb048323a0e56ea4c5498a0652 (diff) | |
download | cpython-79f19f9e7c1849be68bba57ee78c116714e2c5ea.zip cpython-79f19f9e7c1849be68bba57ee78c116714e2c5ea.tar.gz cpython-79f19f9e7c1849be68bba57ee78c116714e2c5ea.tar.bz2 |
Issue #19623: Fixed writing to unseekable files in the aifc module.
Diffstat (limited to 'Lib/test/test_aifc.py')
-rw-r--r-- | Lib/test/test_aifc.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_aifc.py b/Lib/test/test_aifc.py index 041b236..ab51437 100644 --- a/Lib/test/test_aifc.py +++ b/Lib/test/test_aifc.py @@ -14,9 +14,6 @@ class AifcTest(audiotests.AudioWriteTests, module = aifc close_fd = True test_unseekable_read = None - test_unseekable_write = None - test_unseekable_incompleted_write = None - test_unseekable_overflowed_write = None class AifcPCM8Test(AifcTest, unittest.TestCase): |