diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2022-03-24 18:54:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 18:54:35 (GMT) |
commit | 2f49b97cc5426087b46515254b9a97a22ee8c807 (patch) | |
tree | 107021357cabf7b6b297cf5cc4bfbdb8e3aca138 | |
parent | 12c0012cf97d21bc637056983ede0eaf4c0d9c33 (diff) | |
download | cpython-2f49b97cc5426087b46515254b9a97a22ee8c807.zip cpython-2f49b97cc5426087b46515254b9a97a22ee8c807.tar.gz cpython-2f49b97cc5426087b46515254b9a97a22ee8c807.tar.bz2 |
bpo-46841: remove no-longer-used macro UPDATE_PREV_INSTR_OPARG (GH-32100)
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 42925b5..e1d961f 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1433,8 +1433,6 @@ eval_frame_handle_pending(PyThreadState *tstate) #define DEOPT_IF(cond, instname) if (cond) { goto instname ## _miss; } -#define UPDATE_PREV_INSTR_OPARG(instr, oparg) ((uint8_t*)(instr))[-1] = (oparg) - #define GLOBALS() frame->f_globals #define BUILTINS() frame->f_builtins |