https://github.com/python/cpython/commit/295262c8ecb085b4fea552bc6229af3551bbaf7a
commit: 295262c8ecb085b4fea552bc6229af3551bbaf7a
branch: main
author: sobolevn <[email protected]>
committer: erlend-aasland <[email protected]>
date: 2024-11-01T08:17:05+01:00
summary:

gh-126259: Fix "unclosed database" warning in sqlite3 doctest (#126260)

files:
M Doc/library/sqlite3.rst

diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index fc0383823a172b..096892b605b99c 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -2442,6 +2442,7 @@ Some useful URI tricks include:
    >>> con.execute("CREATE TABLE readonly(data)")
    Traceback (most recent call last):
    OperationalError: attempt to write a readonly database
+   >>> con.close()
 
 * Do not implicitly create a new database file if it does not already exist;
   will raise :exc:`~sqlite3.OperationalError` if unable to create a new file:

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to