]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Correct docs: pg8000 supports PostgreSQL UUID 6751/head
authorTony Locke <tlocke@tlocke.org.uk>
Mon, 12 Jul 2021 16:39:52 +0000 (17:39 +0100)
committerTony Locke <tlocke@tlocke.org.uk>
Mon, 12 Jul 2021 17:36:40 +0000 (18:36 +0100)
lib/sqlalchemy/dialects/postgresql/base.py

index 123e6f0fa869153c4d3c1331d9373800079cb2c7..76fc09f9de2b55f50c08692e5e30c0eb3e361b12 100644 (file)
@@ -1686,8 +1686,9 @@ class UUID(sqltypes.TypeEngine):
     data either as natively returned by the DBAPI
     or as Python uuid objects.
 
-    The UUID type may not be supported on all DBAPIs.
-    It is known to work on psycopg2 and not pg8000.
+    The UUID type is currently known to work within the prominent DBAPI
+    drivers supported by SQLAlchemy including psycopg2, pg8000 and
+    asyncpg. Support for other DBAPI drivers may be incomplete or non-present.
 
     """