8000 Fix the previous fix on Linux. · python/cpython@f8e13c0 · GitHub
[go: up one dir, main page]

Skip to content

Commit f8e13c0

Browse files
Fix the previous fix on Linux.
1 parent a73d99c commit f8e13c0

File tree

< C144 span class="prc-TooltipV2-Tooltip-cYMVY" data-direction="se" aria-hidden="true" id=":R4atdab:">Collapse file tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_inspect/test_inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5473,7 +5473,7 @@ def test_time_module_has_signatures(self):
54735473
if os.name == 'posix':
54745474
no_signature |= {'clock_getres', 'clock_settime', 'clock_settime_ns'}
54755475
for name in ['pthread_getcpuclockid']:
5476-
if hasattr(os, name):
5476+
if hasattr(time, name):
54775477
no_signature.add(name)
54785478
self._test_module_has_signatures(time, no_signature)
54795479

0 commit comments

Comments
 (0)
0