From 824e83153d7f956d1612923383faca596d03fe8a Mon Sep 17 00:00:00 2001 From: Vikrant Puppala Date: Tue, 26 May 2026 17:07:08 +0000 Subject: [PATCH] chore: add PEP 249 reference link in databricks.sql package docstring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No functional change — adds a one-line comment linking to the PEP 249 spec next to the `apilevel`/`threadsafety`/`paramstyle` globals. Opened to smoke-test the integration-tests workflow; will be closed once CI completes. Signed-off-by: Vikrant Puppala --- src/databricks/sql/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/databricks/sql/__init__.py b/src/databricks/sql/__init__.py index 493ffe3a2..190fa5ee1 100644 --- a/src/databricks/sql/__init__.py +++ b/src/databricks/sql/__init__.py @@ -3,6 +3,7 @@ from databricks.sql.exc import * # PEP 249 module globals +# (see https://peps.python.org/pep-0249/#globals) apilevel = "2.0" threadsafety = 1 # Threads may share the module, but not connections.