Commit ff92ff53 authored by Antoine Pitrou's avatar Antoine Pitrou Committed by GitHub

Fix test failure without ctypes (#2802)

parent e72b1359
......@@ -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():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment