From 5ee529ece343bbc9d1a991ad604efbb0d67258d1 Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Sun, 5 May 2019 21:34:43 +0800 Subject: [PATCH] Remove superfluous else/exit Artifact from when I was trying to catch SystemExit more elaborately, in order to fall back on Python when our C can't compile. --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 67850f1..6f00e80 100644 --- a/setup.py +++ b/setup.py @@ -29,5 +29,3 @@ try: except (SystemExit, Exception): setup_args.pop('ext_modules') setup(**setup_args) -else: - exit()