diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-08-22 15:23:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-22 22:23:45 +0900 |
commit | 6dd1cdb0cfd6427925863e0ff7ad3fde0d824a8b (patch) | |
tree | 0adb22be173a7aee35c071c4b7f0f2320da9ee26 | |
parent | c5c3fbe2a16a8fcb77eb98eda53efb3e03b863ca (diff) | |
download | cpython-git-6dd1cdb0cfd6427925863e0ff7ad3fde0d824a8b.tar.gz |
Remove unused UNKNOWN macros from cursor.h and prepare_protocol.h (GH-27885)
-rw-r--r-- | Modules/_sqlite/cursor.h | 1 | ||||
-rw-r--r-- | Modules/_sqlite/prepare_protocol.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/Modules/_sqlite/cursor.h b/Modules/_sqlite/cursor.h index 9a5e9eede2..29f52b9218 100644 --- a/Modules/_sqlite/cursor.h +++ b/Modules/_sqlite/cursor.h @@ -54,5 +54,4 @@ typedef struct int pysqlite_cursor_setup_types(PyObject *module); -#define UNKNOWN (-1) #endif diff --git a/Modules/_sqlite/prepare_protocol.h b/Modules/_sqlite/prepare_protocol.h index f24cef5497..afc55a8c1c 100644 --- a/Modules/_sqlite/prepare_protocol.h +++ b/Modules/_sqlite/prepare_protocol.h @@ -32,5 +32,4 @@ typedef struct int pysqlite_prepare_protocol_setup_types(PyObject *module); -#define UNKNOWN (-1) #endif |