diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-05-19 10:08:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 11:08:12 +0300 |
commit | d798acc8733b605f7fc9c3c1a85cd14ee2a56add (patch) | |
tree | f8e3e4c23811fe27989b9eade42e8a144eef25cb /Doc/includes/sqlite3/parse_colnames.py | |
parent | 92d1064727d6b7f4136f9c09ab52ae15e3676afe (diff) | |
download | cpython-d798acc8733b605f7fc9c3c1a85cd14ee2a56add.tar.gz cpython-d798acc8733b605f7fc9c3c1a85cd14ee2a56add.zip |
bpo-44106: Purge unused sqlite3 doc includes (GH-26234)
Diffstat (limited to 'Doc/includes/sqlite3/parse_colnames.py')
-rw-r--r-- | Doc/includes/sqlite3/parse_colnames.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Doc/includes/sqlite3/parse_colnames.py b/Doc/includes/sqlite3/parse_colnames.py deleted file mode 100644 index 5f01dbfe1cb..00000000000 --- a/Doc/includes/sqlite3/parse_colnames.py +++ /dev/null @@ -1,10 +0,0 @@ -import sqlite3 -import datetime - -con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_COLNAMES) -cur = con.cursor() -cur.execute('select ? as "x [timestamp]"', (datetime.datetime.now(),)) -dt = cur.fetchone()[0] -print(dt, type(dt)) - -con.close() |