@@ -577,7 +577,7 @@ Connection objects
577577 supplied, this must be a callable returning an instance of :class: `Cursor `
578578 or its subclasses.
579579
580- .. method :: blobopen(table, column, row, /, \ *, readonly=False, name="main")
580+ .. method :: blobopen(table, column, row, /, *, readonly=False, name="main")
581581
582582 Open a :class: `Blob ` handle to an existing
583583 :abbr: `BLOB ( Binary Large OBject ) `.
@@ -647,7 +647,7 @@ Connection objects
647647 :meth: `~Cursor.executescript ` on it with the given *sql_script *.
648648 Return the new cursor object.
649649
650- .. method :: create_function(name, narg, func, \ *, deterministic=False)
650+ .. method :: create_function(name, narg, func, *, deterministic=False)
651651
652652 Create or remove a user-defined SQL function.
653653
@@ -1040,7 +1040,7 @@ Connection objects
10401040 con.close()
10411041
10421042
1043- .. method :: backup(target, \ *, pages=-1, progress=None, name="main", sleep=0.250)
1043+ .. method :: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)
10441044
10451045 Create a backup of an SQLite database.
10461046
@@ -1169,7 +1169,7 @@ Connection objects
11691169 .. _SQLite limit category : https://www.sqlite.org/c3ref/c_limit_attached.html
11701170
11711171
1172- .. method :: serialize(\ *, name="main")
1172+ .. method :: serialize(*, name="main")
11731173
11741174 Serialize a database into a :class: `bytes ` object. For an
11751175 ordinary on-disk database file, the serialization is just a copy of the
@@ -1191,7 +1191,7 @@ Connection objects
11911191 .. versionadded :: 3.11
11921192
11931193
1194- .. method :: deserialize(data, /, \ *, name="main")
1194+ .. method :: deserialize(data, /, *, name="main")
11951195
11961196 Deserialize a :meth: `serialized <serialize> ` database into a
11971197 :class: `Connection `.
0 commit comments