File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 1717def 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 ,
You can’t perform that action at this time.
0 commit comments