diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2022-01-18 21:57:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 21:57:33 (GMT) |
commit | 01e6cbefd3d0f60c942ed711131f5d638dde1227 (patch) | |
tree | 07f4f6a939b30020e7c568bb9613688bac0c3627 /Doc/tools | |
parent | 4449a1694a0fd2c63fcef5eb7d0ad1d7dfbb6077 (diff) | |
download | cpython-01e6cbefd3d0f60c942ed711131f5d638dde1227.zip cpython-01e6cbefd3d0f60c942ed711131f5d638dde1227.tar.gz cpython-01e6cbefd3d0f60c942ed711131f5d638dde1227.tar.bz2 |
[3.10] bpo-46402: Promote SQLite URI tricks in sqlite3 docs (GH-30660) (GH-30671)
* bpo-46402: Promote SQLite URI tricks in `sqlite3` docs (GH-30660)
Provide some examples of URI parameters in sqlite connect().
Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
(cherry picked from commit bdf2ab1887a2edfb089a3c2a1590cf1e84ea0048)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
* Update suspicious rules
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/susp-ignored.csv | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/tools/susp-ignored.csv b/Doc/tools/susp-ignored.csv index 2453faa..9f4a44f 100644 --- a/Doc/tools/susp-ignored.csv +++ b/Doc/tools/susp-ignored.csv @@ -212,7 +212,10 @@ library/socket,,:can,"return (can_id, can_dlc, data[:can_dlc])" library/socket,,:len,fds.frombytes(cmsg_data[:len(cmsg_data) - (len(cmsg_data) % fds.itemsize)]) library/sqlite3,,:year,"cur.execute(""select * from lang where first_appeared=:year"", {""year"": 1972})" library/sqlite3,,:memory, -library/sqlite3,,:path,"db = sqlite3.connect('file:path/to/database?mode=ro', uri=True)" +library/sqlite3,,:template,"con = sqlite3.connect(""file:template.db?mode=ro"", uri=True)" +library/sqlite3,,:nosuchdb,"con = sqlite3.connect(""file:nosuchdb.db?mode=rw"", uri=True)" +library/sqlite3,,:mem1,"con1 = sqlite3.connect(""file:mem1?mode=memory&cache=shared"", uri=True)" +library/sqlite3,,:mem1,"con2 = sqlite3.connect(""file:mem1?mode=memory&cache=shared"", uri=True)" library/ssl,,:My,"Organizational Unit Name (eg, section) []:My Group" library/ssl,,:My,"Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc." library/ssl,,:myserver,"Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com" |