summaryrefslogtreecommitdiff
path: root/Doc/library/sqlite3.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-07 10:50:12 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-07 10:50:12 +0300
commitb4905efe23c3e158a3c494d40988ce6de6bde3cd (patch)
tree4852accb1338a558cfbb567a71e5679a4e043d3e /Doc/library/sqlite3.rst
parentc145da0751df5cdbddb5285824e6163b2562a883 (diff)
downloadcpython-git-b4905efe23c3e158a3c494d40988ce6de6bde3cd.tar.gz
Issue #26736: Used HTTPS for external links in the documentation if possible.
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r--Doc/library/sqlite3.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index a840bb674b..f897234d13 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -55,7 +55,7 @@ The data you've saved is persistent and is available in subsequent sessions::
Usually your SQL operations will need to use values from Python variables. You
shouldn't assemble your query using Python's string operations because doing so
is insecure; it makes your program vulnerable to an SQL injection attack
-(see http://xkcd.com/327/ for humorous example of what can go wrong).
+(see https://xkcd.com/327/ for humorous example of what can go wrong).
Instead, use the DB-API's parameter substitution. Put ``?`` as a placeholder
wherever you want to use a value, and then provide a tuple of values as the
@@ -101,7 +101,7 @@ This example uses the iterator form::
The pysqlite web page -- sqlite3 is developed externally under the name
"pysqlite".
- http://www.sqlite.org
+ https://www.sqlite.org
The SQLite web page; the documentation describes the syntax and the
available data types for the supported SQL dialect.