[Python-checkins] bpo-40925: Remove unused stack macro SET_VALUE (GH-20783)
Dong-hee Na
webhook-mailer at python.org
Thu Jun 11 05:39:25 EDT 2020
https://github.com/python/cpython/commit/33faf5c4f43e24766cf567bec89ad4c7f1491ff7
commit: 33faf5c4f43e24766cf567bec89ad4c7f1491ff7
branch: master
author: Dong-hee Na <donghee.na92 at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020年06月11日T10:39:18+01:00
summary:
bpo-40925: Remove unused stack macro SET_VALUE (GH-20783)
files:
M Python/ceval.c
diff --git a/Python/ceval.c b/Python/ceval.c
index 9f2cbb06e606a..2bd7cb3ef5313 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1157,7 +1157,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, PyFrameObject *f, int throwflag)
#define SET_SECOND(v) (stack_pointer[-2] = (v))
#define SET_THIRD(v) (stack_pointer[-3] = (v))
#define SET_FOURTH(v) (stack_pointer[-4] = (v))
-#define SET_VALUE(n, v) (stack_pointer[-(n)] = (v))
#define BASIC_STACKADJ(n) (stack_pointer += n)
#define BASIC_PUSH(v) (*stack_pointer++ = (v))
#define BASIC_POP() (*--stack_pointer)
More information about the Python-checkins
mailing list