gh-118924: Remove sqlite3.version and sqlite3.version_info (#118925)

This commit is contained in:
Hugo van Kemenade 2024-05-10 23:42:34 +03:00 committed by GitHub
parent b309c8ebff
commit a019347947
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 36 additions and 74 deletions

View file

@ -714,10 +714,6 @@ module_exec(PyObject *module)
goto error;
}
if (PyModule_AddStringConstant(module, "_deprecated_version", PYSQLITE_VERSION) < 0) {
goto error;
}
if (PyModule_AddStringConstant(module, "sqlite_version", sqlite3_libversion())) {
goto error;
}