Some Python 2 removals

This commit is contained in:
Dave Halter
2020-07-02 03:34:44 +02:00
parent 332631434c
commit 0790f376ca
4 changed files with 3 additions and 16 deletions

View File

@@ -291,14 +291,6 @@ except ImportError as i_a:
i_a
#? ImportError()
i_a
try:
import math
except ImportError, i_b:
# TODO check this only in Python2
##? ['i_b']
i_b
##? ImportError()
i_b
class MyException(Exception):