]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[2.7] delete some unused pysqlite forward declarations (GH-8211). (GH-8214)
authorBenjamin Peterson <benjamin@python.org>
Tue, 10 Jul 2018 04:12:57 +0000 (21:12 -0700)
committerGitHub <noreply@github.com>
Tue, 10 Jul 2018 04:12:57 +0000 (21:12 -0700)
(cherry picked from commit d6d4432724b12efc0d280b8eb80bca0deb8d4323)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
Modules/_sqlite/module.h

index 8d17d6173f0dec43865eb26058d130f4744ece27..9b647c68a1d390b3b4d7fd17e7c998125f2fac6b 100644 (file)
@@ -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.