[Python-checkins] Docs: both sqlite3 "point examples" now adapt to str (GH-99823)

miss-islington webhook-mailer at python.org
Sun Nov 27 16:16:39 EST 2022


https://github.com/python/cpython/commit/ab87bcd91fdb5fddb0cea6f4a38ef9e6a679482b
commit: ab87bcd91fdb5fddb0cea6f4a38ef9e6a679482b
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-11-27T13:16:34-08:00
summary:

Docs: both sqlite3 "point examples" now adapt to str (GH-99823)

(cherry picked from commit 276643e207d44c53b87a8108d5b00982defcce1e)

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 6a38aa525b8e..9775f80624a0 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -1605,7 +1605,7 @@ The following example illustrates the implicit and explicit approaches:
            return f"Point({self.x}, {self.y})"
 
    def adapt_point(point):
-       return f"{point.x};{point.y}".encode("utf-8")
+       return f"{point.x};{point.y}"
 
    def convert_point(s):
        x, y = list(map(float, s.split(b";")))



More information about the Python-checkins mailing list