@@ -564,7 +564,7 @@ Connection objects
564
564
supplied, this must be a callable returning an instance of :class: `Cursor `
565
565
or its subclasses.
566
566
567
- .. method :: blobopen(table, column, row, /, \ *, readonly=False, name="main")
567
+ .. method :: blobopen(table, column, row, /, *, readonly=False, name="main")
568
568
569
569
Open a :class: `Blob ` handle to an existing
570
570
:abbr: `BLOB ( Binary Large OBject ) `.
@@ -634,7 +634,7 @@ Connection objects
634
634
:meth: `~Cursor.executescript ` on it with the given *sql_script *.
635
635
Return the new cursor object.
636
636
637
- .. method :: create_function(name, narg, func, \ *, deterministic=False)
637
+ .. method :: create_function(name, narg, func, *, deterministic=False)
638
638
639
639
Create or remove a user-defined SQL function.
640
640
@@ -1027,7 +1027,7 @@ Connection objects
1027
1027
con.close()
1028
1028
1029
1029
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)
1031
1031
1032
1032
Create a backup of an SQLite database.
1033
1033
@@ -1156,7 +1156,7 @@ Connection objects
1156
1156
.. _SQLite limit category : https://www.sqlite.org/c3ref/c_limit_attached.html
1157
1157
1158
1158
1159
- .. method :: serialize(\ *, name="main")
1159
+ .. method :: serialize(*, name="main")
1160
1160
1161
1161
Serialize a database into a :class: `bytes ` object. For an
1162
1162
ordinary on-disk database file, the serialization is just a copy of the
@@ -1178,7 +1178,7 @@ Connection objects
1178
1178
.. versionadded :: 3.11
1179
1179
1180
1180
1181
- .. method :: deserialize(data, /, \ *, name="main")
1181
+ .. method :: deserialize(data, /, *, name="main")
1182
1182
1183
1183
Deserialize a :meth: `serialized <serialize> ` database into a
1184
1184
:class: `Connection `.
0 commit comments