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