]> granicus.if.org Git - python/commitdiff
delete some unused pysqlite forward declarations (GH-8211)
authorBenjamin Peterson <benjamin@python.org>
Tue, 10 Jul 2018 03:41:26 +0000 (20:41 -0700)
committerGitHub <noreply@github.com>
Tue, 10 Jul 2018 03:41:26 +0000 (20:41 -0700)
Modules/_sqlite/module.h

index 0fb5a55fa4d640e70797c3e403daae95c78fe0cd..d3df9123bfaa84ce2ac197015687b8b3a641ec63 100644 (file)
@@ -38,10 +38,6 @@ extern PyObject* pysqlite_IntegrityError;
 extern PyObject* pysqlite_DataError;
 extern PyObject* pysqlite_NotSupportedError;
 
-/* the functions time.time() and time.sleep() */
-extern PyObject* time_time;
-extern PyObject* time_sleep;
-
 /* A dictionary, mapping column types (INTEGER, VARCHAR, etc.) to converter
  * functions, that convert the SQL value to the appropriate Python value.
  * The key is uppercase.