Drop compat workaround for unsupported Python 3.2

This commit is contained in:
Jon Dufresne 2018-01-07 08:39:05 -08:00
parent 5f42cb7027
commit 8a1d177810

View File

@ -115,8 +115,7 @@ except ImportError:
try: try:
import coreapi import coreapi
import uritemplate import uritemplate
except (ImportError, SyntaxError): except ImportError:
# SyntaxError is possible under python 3.2
coreapi = None coreapi = None
uritemplate = None uritemplate = None