@@ -577,7 +577,7 @@ Connection objects
577
577
supplied, this must be a callable returning an instance of :class: `Cursor `
578
578
or its subclasses.
579
579
580
- .. method :: blobopen(table, column, row, /, \ *, readonly=False, name="main")
580
+ .. method :: blobopen(table, column, row, /, *, readonly=False, name="main")
581
581
582
582
Open a :class: `Blob ` handle to an existing
583
583
:abbr: `BLOB ( Binary Large OBject ) `.
@@ -647,7 +647,7 @@ Connection objects
647
647
:meth: `~Cursor.executescript ` on it with the given *sql_script *.
648
648
Return the new cursor object.
649
649
650
- .. method :: create_function(name, narg, func, \ *, deterministic=False)
650
+ .. method :: create_function(name, narg, func, *, deterministic=False)
651
651
652
652
Create or remove a user-defined SQL function.
653
653
@@ -1040,7 +1040,7 @@ Connection objects
1040
1040
con.close()
1041
1041
1042
1042
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)
1044
1044
1045
1045
Create a backup of an SQLite database.
1046
1046
@@ -1169,7 +1169,7 @@ Connection objects
1169
1169
.. _SQLite limit category : https://www.sqlite.org/c3ref/c_limit_attached.html
1170
1170
1171
1171
1172
- .. method :: serialize(\ *, name="main")
1172
+ .. method :: serialize(*, name="main")
1173
1173
1174
1174
Serialize a database into a :class: `bytes ` object. For an
1175
1175
ordinary on-disk database file, the serialization is just a copy of the
@@ -1191,7 +1191,7 @@ Connection objects
1191
1191
.. versionadded :: 3.11
1192
1192
1193
1193
1194
- .. method :: deserialize(data, /, \ *, name="main")
1194
+ .. method :: deserialize(data, /, *, name="main")
1195
1195
1196
1196
Deserialize a :meth: `serialized <serialize> ` database into a
1197
1197
:class: `Connection `.
0 commit comments