mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
Fix test failure without ctypes (#2802)
This commit is contained in:
parent
e72b1359f8
commit
ff92ff5366
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ try:
|
|||
from ctypes import Structure, c_int, c_double, c_longlong
|
||||
except ImportError:
|
||||
Structure = object
|
||||
c_int = c_double = None
|
||||
c_int = c_double = c_longlong = None
|
||||
|
||||
|
||||
def check_enough_semaphores():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue