mirror of https://github.com/django/django.git
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