Skip to content

Commit e89c79c

Browse files
committed
revert to standard ctype command for the C language
1 parent b37bf1c commit e89c79c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

python-bindings/tasks.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
def clean(c):
1818
"""Remove any built objects"""
1919
for file_pattern in (
20-
"*.o",
21-
"*.so",
22-
"*.obj",
23-
"*.dll",
24-
"*.exp",
25-
"*.lib",
26-
"*.pyd",
27-
"cffi_example*", # Is this a dir?
28-
"cython_wrapper.cpp",
20+
"*.o",
21+
"*.so",
22+
"*.obj",
23+
"*.dll",
24+
"*.exp",
25+
"*.lib",
26+
"*.pyd",
27+
"cffi_example*", # Is this a dir?
28+
"cython_wrapper.cpp",
2929
):
3030
for file in glob.glob(file_pattern):
3131
os.remove(file)
@@ -64,7 +64,7 @@ def build_cmult(c, path=None):
6464

6565

6666
@invoke.task()
67-
def test_ctypes_c(c):
67+
def test_ctypes(c):
6868
"""Run the script to test ctypes"""
6969
print_banner("Testing ctypes Module for C")
7070
# pty and python3 didn't work for me (win).
@@ -185,7 +185,7 @@ def test_cython(c):
185185
clean,
186186
build_cmult,
187187
build_cppmult,
188-
test_ctypes_c,
188+
test_ctypes,
189189
test_ctypes_cpp,
190190
build_cffi,
191191
test_cffi,

0 commit comments

Comments
 (0)