Skip to content

Commit 7e279ce

Browse files
Update test_inspect for the new signatures
1 parent 9226d49 commit 7e279ce

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

Lib/test/test_inspect/test_inspect.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6280,11 +6280,7 @@ def test_gc_module_has_signatures(self):
62806280
self._test_module_has_signatures(gc, no_signature)
62816281

62826282
def test_io_module_has_signatures(self):
6283-
methods_no_signature = {
6284-
'BufferedRWPair': {'read', 'peek', 'read1', 'readinto', 'readinto1', 'write'},
6285-
}
6286-
self._test_module_has_signatures(io,
6287-
methods_no_signature=methods_no_signature)
6283+
self._test_module_has_signatures(io)
62886284

62896285
def test_itertools_module_has_signatures(self):
62906286
import itertools

0 commit comments

Comments
 (0)