bpo-44047: Remove unused argument to _pysqlite_seterror (GH-25915)
This commit is contained in:
committed by
GitHub
parent
a0cb2e4302
commit
0988ed09b4
@@ -39,7 +39,8 @@ int pysqlite_step(sqlite3_stmt* statement, pysqlite_Connection* connection)
|
||||
* Checks the SQLite error code and sets the appropriate DB-API exception.
|
||||
* Returns the error code (0 means no error occurred).
|
||||
*/
|
||||
int _pysqlite_seterror(sqlite3* db, sqlite3_stmt* st)
|
||||
int
|
||||
_pysqlite_seterror(sqlite3 *db)
|
||||
{
|
||||
int errorcode = sqlite3_errcode(db);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user