mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
c9f3f42f4b
git-svn-id: http://svn.pyinstaller.org/trunk@599 8dd32b29-ccff-0310-8a9a-9233e24343b1
11 lines
192 B
Python
11 lines
192 B
Python
#!/usr/bin/env python
|
|
|
|
try:
|
|
import ctypes
|
|
except ImportError:
|
|
# ctypes unavailable, testing ctypes support is pointless.
|
|
sys.exit(0)
|
|
|
|
import test15a
|
|
assert test15a.dummy(42) == 42
|