@@ -564,7 +564,7 @@ Connection objects
564564 supplied, this must be a callable returning an instance of :class: `Cursor `
565565 or its subclasses.
566566
567- .. method :: blobopen(table, column, row, /, \ *, readonly=False, name="main")
567+ .. method :: blobopen(table, column, row, /, *, readonly=False, name="main")
568568
569569 Open a :class: `Blob ` handle to an existing
570570 :abbr: `BLOB ( Binary Large OBject ) `.
@@ -634,7 +634,7 @@ Connection objects
634634 :meth: `~Cursor.executescript ` on it with the given *sql_script *.
635635 Return the new cursor object.
636636
637- .. method :: create_function(name, narg, func, \ *, deterministic=False)
637+ .. method :: create_function(name, narg, func, *, deterministic=False)
638638
639639 Create or remove a user-defined SQL function.
640640
@@ -1027,7 +1027,7 @@ Connection objects
10271027 con.close()
10281028
10291029
1030- .. method :: backup(target, \ *, pages=-1, progress=None, name="main", sleep=0.250)
1030+ .. method :: backup(target, *, pages=-1, progress=None, name="main", sleep=0.250)
10311031
10321032 Create a backup of an SQLite database.
10331033
@@ -1156,7 +1156,7 @@ Connection objects
11561156 .. _SQLite limit category : https://www.sqlite.org/c3ref/c_limit_attached.html
11571157
11581158
1159- .. method :: serialize(\ *, name="main")
1159+ .. method :: serialize(*, name="main")
11601160
11611161 Serialize a database into a :class: `bytes ` object. For an
11621162 ordinary on-disk database file, the serialization is just a copy of the
@@ -1178,7 +1178,7 @@ Connection objects
11781178 .. versionadded :: 3.11
11791179
11801180
1181- .. method :: deserialize(data, /, \ *, name="main")
1181+ .. method :: deserialize(data, /, *, name="main")
11821182
11831183 Deserialize a :meth: `serialized <serialize> ` database into a
11841184 :class: `Connection `.
0 commit comments