diff options
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index f5c6e73..40fb0d7 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -2026,6 +2026,10 @@ dummy_func( } } + pseudo(ANNOTATIONS_PLACEHOLDER, (--)) = { + NOP, + }; + inst(DICT_UPDATE, (dict, unused[oparg - 1], update -- dict, unused[oparg - 1])) { PyObject *dict_o = PyStackRef_AsPyObjectBorrow(dict); PyObject *update_o = PyStackRef_AsPyObjectBorrow(update); |