[Python-checkins] gh-94635: Fixup sqlite3 'Introduction' seealso note (GH-95751) (#95752)

erlend-aasland webhook-mailer at python.org
Tue Aug 9 07:48:12 EDT 2022


https://github.com/python/cpython/commit/88cae1c9c69f1f48e88956344f1983f32389f3e3
commit: 88cae1c9c69f1f48e88956344f1983f32389f3e3
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: erlend-aasland <erlend.aasland at protonmail.com>
date: 2022-08-09T13:48:08+02:00
summary:

gh-94635: Fixup sqlite3 'Introduction' seealso note (GH-95751) (#95752)

In gh-95269, the seealso note incorrectly ended up in
the 'Tutorial' section.
(cherry picked from commit 56af5a200d60e86a8ac450264729d693053275e3)

Co-authored-by: Erlend E. Aasland <erlend.aasland at protonmail.com>

files:
M Doc/library/sqlite3.rst

diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index e88207fa640..1afb8c87b38 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -34,6 +34,18 @@ This document includes four main sections:
 * :ref:`sqlite3-explanation` provides in-depth background on
   transaction control.
 
+.. seealso::
+
+   https://www.sqlite.org
+      The SQLite web page; the documentation describes the syntax and the
+      available data types for the supported SQL dialect.
+
+   https://www.w3schools.com/sql/
+      Tutorial, reference and examples for learning SQL syntax.
+
+   :pep:`249` - Database API Specification 2.0
+      PEP written by Marc-André Lemburg.
+
 
 .. _sqlite3-tutorial:
 
@@ -114,18 +126,6 @@ You've now created an SQLite database using the :mod:`!sqlite3` module.
 
 .. _SQL injection attacks: https://en.wikipedia.org/wiki/SQL_injection
 
-.. seealso::
-
-   https://www.sqlite.org
-      The SQLite web page; the documentation describes the syntax and the
-      available data types for the supported SQL dialect.
-
-   https://www.w3schools.com/sql/
-      Tutorial, reference and examples for learning SQL syntax.
-
-   :pep:`249` - Database API Specification 2.0
-      PEP written by Marc-André Lemburg.
-
 
 .. _sqlite3-reference:
 



More information about the Python-checkins mailing list