mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +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
|
from ctypes import Structure, c_int, c_double, c_longlong
|
||||||
except ImportError:
|
except ImportError:
|
||||||
Structure = object
|
Structure = object
|
||||||
c_int = c_double = None
|
c_int = c_double = c_longlong = None
|
||||||
|
|
||||||
|
|
||||||
def check_enough_semaphores():
|
def check_enough_semaphores():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue