Skip to content

Commit fb5d60b

Browse files
committed
exclude RLock from test_threading_module_has_signatures following test_thread_module_has_signatures
1 parent a73b47f commit fb5d60b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_inspect/test_inspect.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6280,7 +6280,8 @@ def test_sysconfig_module_has_signatures(self):
62806280

62816281
def test_threading_module_has_signatures(self):
62826282
import threading
6283-
self._test_module_has_signatures(threading)
6283+
no_signature = {'RLock'}
6284+
self._test_module_has_signatures(threading, no_signature)
62846285
self.assertIsNotNone(inspect.signature(threading.__excepthook__))
62856286

62866287
def test_thread_module_has_signatures(self):

0 commit comments

Comments
 (0)