We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7617182 commit b6023a0Copy full SHA for b6023a0
testing/cffi0/test_ownlib.py
@@ -156,8 +156,8 @@ def setup_class(cls):
156
if sys.maxsize > 2**32:
157
arch = 'amd64'
158
if os.path.isfile(vcvarsall):
159
- cmd = '"%s" %s' % (vcvarsall, arch) + ' & cl.exe testownlib.c ' \
160
- ' /LD /Fetestownlib.dll'
+ cmd = '"%s" %s & cl.exe testownlib.c /LD /Fetestownlib.dll' % (
+ vcvarsall, arch)
161
subprocess.check_call(cmd, cwd = str(udir), shell=True)
162
os.rename(f"{udir}\\testownlib.dll", dll_path)
163
cls.module = dll_path
0 commit comments