We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1926a6 commit 471ae9fCopy full SHA for 471ae9f
Lib/test/test_io.py
@@ -1046,7 +1046,7 @@ def close(self):
1046
class TestIOCTypes(unittest.TestCase):
1047
def setUp(self):
1048
_io = import_helper.import_module("_io")
1049
- self.types = (
+ self.types = [
1050
_io.BufferedRWPair,
1051
_io.BufferedRandom,
1052
_io.BufferedReader,
@@ -1061,7 +1061,7 @@ def setUp(self):
1061
_io._IOBase,
1062
_io._RawIOBase,
1063
_io._TextIOBase,
1064
- )
+ ]
1065
if sys.platform == "win32":
1066
self.types.append(_io._WindowsConsoleIO)
1067
self._io = _io
0 commit comments