[Python-checkins] delete some unused pysqlite forward declarations (GH-8211)
Benjamin Peterson
webhook-mailer at python.org
Mon Jul 9 23:41:30 EDT 2018
https://github.com/python/cpython/commit/d6d4432724b12efc0d280b8eb80bca0deb8d4323
commit: d6d4432724b12efc0d280b8eb80bca0deb8d4323
branch: master
author: Benjamin Peterson <benjamin at python.org>
committer: GitHub <noreply at github.com>
date: 2018年07月09日T20:41:26-07:00
summary:
delete some unused pysqlite forward declarations (GH-8211)
files:
M Modules/_sqlite/module.h
diff --git a/Modules/_sqlite/module.h b/Modules/_sqlite/module.h
index 0fb5a55fa4d6..d3df9123bfaa 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.
More information about the Python-checkins
mailing list