diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-16 21:48:02 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-16 21:48:02 (GMT) |
commit | 8fa8ee3970f095f47f045891afe118836280e551 (patch) | |
tree | 7f64afb1084a746b1ecd7e293fbbddeeb5f270d5 /Modules/_sqlite/cursor.c | |
parent | 5c03d2075782eab58b33ecc114abb8df025e6057 (diff) | |
download | cpython-8fa8ee3970f095f47f045891afe118836280e551.zip cpython-8fa8ee3970f095f47f045891afe118836280e551.tar.gz cpython-8fa8ee3970f095f47f045891afe118836280e551.tar.bz2 |
Issue #18701: Remove support of old CPython versions (<3.0) from C code.
Diffstat (limited to 'Modules/_sqlite/cursor.c')
-rw-r--r-- | Modules/_sqlite/cursor.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/_sqlite/cursor.c b/Modules/_sqlite/cursor.c index 8f9bd69..bf4bbb4 100644 --- a/Modules/_sqlite/cursor.c +++ b/Modules/_sqlite/cursor.c @@ -24,7 +24,6 @@ #include "cursor.h" #include "module.h" #include "util.h" -#include "sqlitecompat.h" PyObject* pysqlite_cursor_iternext(pysqlite_Cursor* self); |