mirror of
https://github.com/django/django.git
synced 2024-12-22 17:16:24 +00:00
Refs #33865 -- Corrected signature of ExplodingBytesIO.read().
These subclasses of io.BytesIO should inherit the correct signature.
This commit is contained in:
parent
7a1543d9f6
commit
95182a8593
@ -610,7 +610,7 @@ class RequestsTests(SimpleTestCase):
|
||||
"""
|
||||
|
||||
class ExplodingBytesIO(BytesIO):
|
||||
def read(self, len=0):
|
||||
def read(self, size=-1, /):
|
||||
raise OSError("kaboom!")
|
||||
|
||||
payload = b"name=value"
|
||||
@ -659,7 +659,7 @@ class RequestsTests(SimpleTestCase):
|
||||
"""
|
||||
|
||||
class ExplodingBytesIO(BytesIO):
|
||||
def read(self, len=0):
|
||||
def read(self, size=-1, /):
|
||||
raise OSError("kaboom!")
|
||||
|
||||
payload = b"x"
|
||||
|
Loading…
Reference in New Issue
Block a user