diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-07-21 11:24:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-21 11:24:05 (GMT) |
commit | ff92ff53665b1606a17231972b48ad894459f761 (patch) | |
tree | 4f756d46390bb9c9964fad3aa3f85fa3a7f6af2f /Lib/test | |
parent | e72b1359f81d1dd42bd8a5c5cc2b3928b74f8023 (diff) | |
download | cpython-ff92ff53665b1606a17231972b48ad894459f761.zip cpython-ff92ff53665b1606a17231972b48ad894459f761.tar.gz cpython-ff92ff53665b1606a17231972b48ad894459f761.tar.bz2 |
Fix test failure without ctypes (#2802)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/_test_multiprocessing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py index 9ef44a0..329a6d2 100644 --- a/Lib/test/_test_multiprocessing.py +++ b/Lib/test/_test_multiprocessing.py @@ -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(): |