summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2021-10-28 15:17:45 -0500
committerJason Madden <jamadden@gmail.com>2021-10-28 15:17:45 -0500
commitb8dc93f55c3b754f1f12626b1b6b7df313f94244 (patch)
tree43bdcbc7fe0971451ec2a694b8729a373af64cd3 /setup.py
parent58ad6e09f7209dc97f5e30b3c0ceacdc2fe2a649 (diff)
downloadgreenlet-b8dc93f55c3b754f1f12626b1b6b7df313f94244.tar.gz
Sprinkle in some more noexcept.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 476bb66..c96dd09 100755
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,7 @@ elif sys.platform == 'win32':
# /EHsc is suggested, as /EHa isn't supposed to be linked to other things not built
# with it.
# See https://docs.microsoft.com/en-us/cpp/build/reference/eh-exception-handling-model?view=msvc-160
- handler = "/EHs"
+ handler = "/EHsc"
cpp_compile_args.append(handler)
def readfile(filename):