Merge pull request #483 from almarklein/windowserror

Create dummy WindowsError that is an actual Exception instead of None.
This commit is contained in:
Johannes Schönberger
2013-03-27 14:42:53 -07:00
+2 -1
View File
@@ -8,7 +8,8 @@ import subprocess
try:
WindowsError
except NameError:
WindowsError = None
class WindowsError(Exception):
pass
def cython(pyx_files, working_path=''):