summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite/connection.h
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-05-31 08:24:56 (GMT)
committerGitHub <noreply@github.com>2021-05-31 08:24:56 (GMT)
commitd1124b09e8251061dc040cbd396f35ae57783f4a (patch)
treec2817d08e92a824e483248bee71491f70119306a /Modules/_sqlite/connection.h
parent4b20f2574d412f4c4a5b1ab799d8e71a5dd3b766 (diff)
downloadcpython-d1124b09e8251061dc040cbd396f35ae57783f4a.zip
cpython-d1124b09e8251061dc040cbd396f35ae57783f4a.tar.gz
cpython-d1124b09e8251061dc040cbd396f35ae57783f4a.tar.bz2
bpo-42972: Fix sqlite3 traverse/clear functions (GH-26452)
Diffstat (limited to 'Modules/_sqlite/connection.h')
-rw-r--r--Modules/_sqlite/connection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h
index 82f6baf..8773c9e 100644
--- a/Modules/_sqlite/connection.h
+++ b/Modules/_sqlite/connection.h
@@ -93,7 +93,7 @@ typedef struct
/* a dictionary of registered collation name => collation callable mappings */
PyObject* collations;
- /* Exception objects */
+ /* Exception objects: borrowed refs. */
PyObject* Warning;
PyObject* Error;
PyObject* InterfaceError;