mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Closes #23247: Fix a crash in the StreamWriter.reset() of CJK codecs
This commit is contained in:
parent
b37f43f94b
commit
579db160b3
3 changed files with 12 additions and 0 deletions
|
@ -270,6 +270,13 @@ class TestBase:
|
|||
|
||||
self.assertEqual(ostream.getvalue(), self.tstring[0])
|
||||
|
||||
def test_streamwriter_reset_no_pending(self):
|
||||
# Issue #23247: Calling reset() on a fresh StreamWriter instance
|
||||
# (without pending data) must not crash
|
||||
stream = BytesIO()
|
||||
writer = self.writer(stream)
|
||||
writer.reset()
|
||||
|
||||
|
||||
class TestBase_Mapping(unittest.TestCase):
|
||||
pass_enctest = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue