]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-94635: Fixup sqlite3 'Introduction' seealso note (#95751)
authorErlend E. Aasland <erlend.aasland@protonmail.com>
Sat, 6 Aug 2022 21:30:26 +0000 (23:30 +0200)
committerGitHub <noreply@github.com>
Sat, 6 Aug 2022 21:30:26 +0000 (23:30 +0200)
In gh-95269, the seealso note incorrectly ended up in
the 'Tutorial' section.

Doc/library/sqlite3.rst

index 140dccfea94bdbdce0c839386c0ed9672a01c646..83f29287120e3037da0d969b43e058f782606bc2 100644 (file)
@@ -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: