Skip to content

Commit a1cfa2c

Browse files
committed
Re-order keys to be in alphabetical order.
1 parent f9f6102 commit a1cfa2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_inspect/test_inspect.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5877,8 +5877,8 @@ def test_operator_module_has_signatures(self):
58775877
def test_os_module_has_signatures(self):
58785878
unsupported_signature = {'chmod', 'utime'}
58795879
unsupported_signature |= {name for name in
5880-
['get_terminal_size', 'posix_spawn', 'posix_spawnp',
5881-
'register_at_fork', 'startfile', 'link']
5880+
['get_terminal_size', 'link', 'posix_spawn', 'posix_spawnp',
5881+
'register_at_fork', 'startfile']
58825882
if hasattr(os, name)}
58835883
self._test_module_has_signatures(os, unsupported_signature=unsupported_signature)
58845884

0 commit comments

Comments
 (0)