mirror of
https://github.com/python/cpython.git
synced 2025-08-27 12:16:04 +00:00
bpo-44047: Remove unused argument to _pysqlite_seterror (GH-25915)
This commit is contained in:
parent
a0cb2e4302
commit
0988ed09b4
4 changed files with 23 additions and 22 deletions
|
@ -35,7 +35,7 @@ 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);
|
||||
|
||||
sqlite_int64 _pysqlite_long_as_int64(PyObject * value);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue