Remove uuid workaround for older Pythons

uuid is available on all Python versions supported by psycopg2.
This commit is contained in:
Jon Dufresne 2017-11-26 14:46:53 -08:00
parent 858bc3d42a
commit 582ec189cc

View File

@ -203,11 +203,6 @@ def skip_if_no_uuid(f):
"""Decorator to skip a test if uuid is not supported by Py/PG."""
@wraps(f)
def skip_if_no_uuid_(self):
try:
import uuid # noqa
except ImportError:
return self.skipTest("uuid not available in this Python version")
try:
cur = self.conn.cursor()
cur.execute("select typname from pg_type where typname = 'uuid'")