From 47b51e5a4335ced29de5d751451c4fb67ad1cce5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vlastimil=20Z=C3=ADma?= Date: Thu, 30 Jul 2020 03:56:39 -0400 Subject: Clean python UUID imports Fixes: #5482 All supported python versions provide 'uuid' module. Closes: #5483 Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5483 Pull-request-sha: fc32498a8b639ff21d5898100592782826d2c6dd Change-Id: I8b41b811da7576f724353425dad5d6f581641b4b --- lib/sqlalchemy/dialects/postgresql/base.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'lib/sqlalchemy/dialects/postgresql/base.py') diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index 5cef5d929..3bd7e62d5 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -992,6 +992,7 @@ E.g.:: from collections import defaultdict import datetime as dt import re +from uuid import UUID as _python_UUID from . import array as _array from . import hstore as _hstore @@ -1023,12 +1024,6 @@ from ...types import TEXT from ...types import VARCHAR -try: - from uuid import UUID as _python_UUID # noqa -except ImportError: - _python_UUID = None - - IDX_USING = re.compile(r"^(?:btree|hash|gist|gin|[\w_]+)$", re.I) AUTOCOMMIT_REGEXP = re.compile( @@ -1302,11 +1297,6 @@ class UUID(sqltypes.TypeEngine): DBAPI. """ - if as_uuid and _python_UUID is None: - raise NotImplementedError( - "This version of Python does not support " - "the native UUID type." - ) self.as_uuid = as_uuid def bind_processor(self, dialect): -- cgit v1.2.1