@@ -1619,23 +1619,24 @@ _sqlite3.Connection.set_progress_handler as pysqlite_connection_set_progress_han
16191619 cls: defining_class
16201620 progress_handler as callable: object
16211621 A callable that takes no arguments.
1622- If the callable returns non-zero, the current query is terminated,
1623- and an exception is raised.
1622+ If the callable returns non-zero, the current query is
1623+ terminated, and an exception is raised.
16241624 / [from 3.15]
16251625 n: int
16261626 The number of SQLite virtual machine instructions that are
16271627 executed between invocations of 'progress_handler'.
16281628
16291629Set progress handler callback.
16301630
1631- If 'progress_handler' is None or 'n' is 0, the progress handler is disabled.
1631+ If 'progress_handler' is None or 'n' is 0, the progress handler is
1632+ disabled.
16321633[clinic start generated code]*/
16331634
16341635static PyObject *
16351636pysqlite_connection_set_progress_handler_impl (pysqlite_Connection * self ,
16361637 PyTypeObject * cls ,
16371638 PyObject * callable , int n )
1638- /*[clinic end generated code: output=0739957fd8034a50 input=b4d6e2ef8b4d32f9 ]*/
1639+ /*[clinic end generated code: output=0739957fd8034a50 input=d46887797f0c0ecf ]*/
16391640{
16401641 if (!pysqlite_check_thread (self ) || !pysqlite_check_connection (self )) {
16411642 return NULL ;
@@ -2272,15 +2273,15 @@ _sqlite3.Connection.serialize as serialize
22722273
22732274Serialize a database into a byte string.
22742275
2275- For an ordinary on-disk database file, the serialization is just a copy of the
2276- disk file. For an in-memory database or a "temp" database, the serialization is
2277- the same sequence of bytes which would be written to disk if that database
2278- were backed up to disk.
2276+ For an ordinary on-disk database file, the serialization is just
2277+ a copy of the disk file. For an in-memory database or a "temp"
2278+ database, the serialization is the same sequence of bytes which
2279+ would be written to disk if that database were backed up to disk.
22792280[clinic start generated code]*/
22802281
22812282static PyObject *
22822283serialize_impl (pysqlite_Connection * self , const char * name )
2283- /*[clinic end generated code: output=97342b0e55239dd3 input=d2eb5194a65abe2b ]*/
2284+ /*[clinic end generated code: output=97342b0e55239dd3 input=7e48654e8e082fa8 ]*/
22842285{
22852286 if (!pysqlite_check_thread (self ) || !pysqlite_check_connection (self )) {
22862287 return NULL ;
@@ -2325,18 +2326,19 @@ _sqlite3.Connection.deserialize as deserialize
23252326
23262327Load a serialized database.
23272328
2328- The deserialize interface causes the database connection to disconnect from the
2329- target database, and then reopen it as an in-memory database based on the given
2330- serialized data.
2329+ The deserialize interface causes the database connection to
2330+ disconnect from the target database, and then reopen it as
2331+ an in-memory database based on the given serialized data.
23312332
2332- The deserialize interface will fail with SQLITE_BUSY if the database is
2333- currently in a read transaction or is involved in a backup operation.
2333+ The deserialize interface will fail with SQLITE_BUSY if the database
2334+ is currently in a read transaction or is involved in a backup
2335+ operation.
23342336[clinic start generated code]*/
23352337
23362338static PyObject *
23372339deserialize_impl (pysqlite_Connection * self , Py_buffer * data ,
23382340 const char * name )
2339- /*[clinic end generated code: output=e394c798b98bad89 input=1be4ca1faacf28f2 ]*/
2341+ /*[clinic end generated code: output=e394c798b98bad89 input=5d20e028d98c0686 ]*/
23402342{
23412343 if (!pysqlite_check_thread (self ) || !pysqlite_check_connection (self )) {
23422344 return NULL ;
@@ -2409,13 +2411,14 @@ _sqlite3.Connection.__exit__ as pysqlite_connection_exit
24092411
24102412Called when the connection is used as a context manager.
24112413
2412- If there was any exception, a rollback takes place; otherwise we commit.
2414+ If there was any exception, a rollback takes place; otherwise we
2415+ commit.
24132416[clinic start generated code]*/
24142417
24152418static PyObject *
24162419pysqlite_connection_exit_impl (pysqlite_Connection * self , PyObject * exc_type ,
24172420 PyObject * exc_value , PyObject * exc_tb )
2418- /*[clinic end generated code: output=0705200e9321202a input=bd66f1532c9c54a7 ]*/
2421+ /*[clinic end generated code: output=0705200e9321202a input=8fdb0392ee6f3466 ]*/
24192422{
24202423 int commit = 0 ;
24212424 PyObject * result ;
@@ -2455,20 +2458,20 @@ _sqlite3.Connection.setlimit as setlimit
24552458 category: int
24562459 The limit category to be set.
24572460 limit: int
2458- The new limit. If the new limit is a negative number, the limit is
2459- unchanged.
2461+ The new limit. If the new limit is a negative number, the limit
2462+ is unchanged.
24602463 /
24612464
24622465Set connection run-time limits.
24632466
2464- Attempts to increase a limit above its hard upper bound are silently truncated
2465- to the hard upper bound. Regardless of whether or not the limit was changed,
2466- the prior value of the limit is returned.
2467+ Attempts to increase a limit above its hard upper bound are silently
2468+ truncated to the hard upper bound. Regardless of whether or not the
2469+ limit was changed, the prior value of the limit is returned.
24672470[clinic start generated code]*/
24682471
24692472static PyObject *
24702473setlimit_impl (pysqlite_Connection * self , int category , int limit )
2471- /*[clinic end generated code: output=0d208213f8d68ccd input=9bd469537e195635 ]*/
2474+ /*[clinic end generated code: output=0d208213f8d68ccd input=5c2e430091206677 ]*/
24722475{
24732476 if (!pysqlite_check_thread (self ) || !pysqlite_check_connection (self )) {
24742477 return NULL ;
0 commit comments