File tree Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -1298,25 +1298,27 @@ pysqlite_cursor_close_impl(pysqlite_Cursor *self)
1298
1298
}
1299
1299
1300
1300
/*[clinic input]
1301
+ @critical_section
1301
1302
@getter
1302
1303
_sqlite3.Cursor.arraysize
1303
1304
[clinic start generated code]*/
1304
1305
1305
1306
static PyObject *
1306
1307
_sqlite3_Cursor_arraysize_get_impl (pysqlite_Cursor * self )
1307
- /*[clinic end generated code: output=e0919d97175e6c50 input=3278f8d3ecbd90e3 ]*/
1308
+ /*[clinic end generated code: output=e0919d97175e6c50 input=e0e184c319955cbc ]*/
1308
1309
{
1309
1310
return PyLong_FromUInt32 (self -> arraysize );
1310
1311
}
1311
1312
1312
1313
/*[clinic input]
1314
+ @critical_section
1313
1315
@setter
1314
1316
_sqlite3.Cursor.arraysize
1315
1317
[clinic start generated code]*/
1316
1318
1317
1319
static int
1318
1320
_sqlite3_Cursor_arraysize_set_impl (pysqlite_Cursor * self , PyObject * value )
1319
- /*[clinic end generated code: output=af59a6b09f8cce6e input=ace48cb114e26060 ]*/
1321
+ /*[clinic end generated code: output=af59a6b09f8cce6e input=9bb20fe894cda495 ]*/
1320
1322
{
1321
1323
return PyLong_AsUInt32 (value , & self -> arraysize );
1322
1324
}
You can’t perform that action at this time.
0 commit comments