summaryrefslogtreecommitdiff
path: root/Modules/_sqlite
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-07-09 21:02:29 -0700
committerGitHub <noreply@github.com>2018-07-09 21:02:29 -0700
commitba10da137347b330da119e42ca5ceb401eb70432 (patch)
tree59ec6832abd361d2104dd756fd7da86545cd0e2d /Modules/_sqlite
parent8d6b6d1f1d76bf709317c316634d3000ce200864 (diff)
downloadcpython-git-ba10da137347b330da119e42ca5ceb401eb70432.tar.gz
delete some unused pysqlite forward declarations (GH-8211)
(cherry picked from commit d6d4432724b12efc0d280b8eb80bca0deb8d4323) Co-authored-by: Benjamin Peterson <benjamin@python.org>
Diffstat (limited to 'Modules/_sqlite')
-rw-r--r--Modules/_sqlite/module.h4
1 files changed, 0 insertions, 4 deletions
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.