diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2023-10-10 08:45:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 08:45:23 (GMT) |
commit | 982f1b7d6dc2f13b9607ce092e36e32972e3702c (patch) | |
tree | 8ac5694b0ba271376c066ed94971de40277c7f1c /Python | |
parent | 13380da91e75e1733a03a5e33af3733745575b51 (diff) | |
download | cpython-982f1b7d6dc2f13b9607ce092e36e32972e3702c.zip cpython-982f1b7d6dc2f13b9607ce092e36e32972e3702c.tar.gz cpython-982f1b7d6dc2f13b9607ce092e36e32972e3702c.tar.bz2 |
Remove an old macro from executor.c (#110597)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/executor.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/executor.c b/Python/executor.c index 6da3af0..1630f01 100644 --- a/Python/executor.c +++ b/Python/executor.c @@ -22,9 +22,6 @@ #include "ceval_macros.h" -#undef ASSERT_KWNAMES_IS_NULL -#define ASSERT_KWNAMES_IS_NULL() (void)0 - #undef DEOPT_IF #define DEOPT_IF(COND, INSTNAME) \ if ((COND)) { \ |