summaryrefslogtreecommitdiff
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2018-07-09 21:12:57 -0700
committerGitHub <noreply@github.com>2018-07-09 21:12:57 -0700
commit695ecd9dc6b9c08775fab517f77aba77d13aaef4 (patch)
treeabdb55f56dede010f66b66df8276925800598613 /Modules
parent789f95ac9784036741fb04257bdc52e96e80685a (diff)
downloadcpython-git-695ecd9dc6b9c08775fab517f77aba77d13aaef4.tar.gz
[2.7] delete some unused pysqlite forward declarations (GH-8211). (GH-8214)
(cherry picked from commit d6d4432724b12efc0d280b8eb80bca0deb8d4323) Co-authored-by: Benjamin Peterson <benjamin@python.org>
Diffstat (limited to 'Modules')
-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 8d17d6173f..9b647c68a1 100644
--- a/Modules/_sqlite/module.h
+++ b/Modules/_sqlite/module.h
@@ -40,10 +40,6 @@ extern PyObject* pysqlite_NotSupportedError;
extern PyObject* pysqlite_OptimizedUnicode;
-/* the functions time.time() and time.sleep() */
-extern PyObject* time_time;
-extern PyObject* time_sleep;
-
/* A dictionary, mapping colum types (INTEGER, VARCHAR, etc.) to converter
* functions, that convert the SQL value to the appropriate Python value.
* The key is uppercase.