From: Benjamin Peterson Date: Tue, 10 Jul 2018 03:41:26 +0000 (-0700) Subject: delete some unused pysqlite forward declarations (GH-8211) X-Git-Tag: v3.8.0a1~1395 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6d4432724b12efc0d280b8eb80bca0deb8d4323;p=python delete some unused pysqlite forward declarations (GH-8211) --- diff --git a/Modules/_sqlite/module.h b/Modules/_sqlite/module.h index 0fb5a55fa4..d3df9123bf 100644 --- a/Modules/_sqlite/module.h +++ b/Modules/_sqlite/module.h @@ -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.