mirror of
https://github.com/python/cpython.git
synced 2025-11-01 14:11:41 +00:00
[3.14] gh-136523: Fix wave.Wave_write emitting an unraisable when open raises (GH-136529) (GH-136606)
(cherry picked from commit 171de05b48)
Co-authored-by: Sachin Shah <39803835+inventshah@users.noreply.github.com>
This commit is contained in:
parent
cdf98c3b7e
commit
677b0e314c
3 changed files with 12 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
|||
from test import audiotests
|
||||
from test import support
|
||||
import io
|
||||
import os
|
||||
import struct
|
||||
import sys
|
||||
import wave
|
||||
|
|
@ -222,6 +223,14 @@ def test_read_wrong_sample_width(self):
|
|||
with self.assertRaisesRegex(wave.Error, 'bad sample width'):
|
||||
wave.open(io.BytesIO(b))
|
||||
|
||||
def test_open_in_write_raises(self):
|
||||
# gh-136523: Wave_write.__del__ should not throw
|
||||
with support.catch_unraisable_exception() as cm:
|
||||
with self.assertRaises(OSError):
|
||||
wave.open(os.curdir, "wb")
|
||||
support.gc_collect()
|
||||
self.assertIsNone(cm.unraisable)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
|
|
|||
|
|
@ -441,6 +441,8 @@ class Wave_write:
|
|||
_datawritten -- the size of the audio samples actually written
|
||||
"""
|
||||
|
||||
_file = None
|
||||
|
||||
def __init__(self, f):
|
||||
self._i_opened_the_file = None
|
||||
if isinstance(f, str):
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
Fix :class:`wave.Wave_write` emitting an unraisable when open raises.
|
||||
Loading…
Add table
Add a link
Reference in a new issue