From 70a59b482188a75a6f88b429facc05b7b3d587bd Mon Sep 17 00:00:00 2001 From: Brandt Bucher Date: Tue, 28 Jan 2020 19:13:50 -0800 Subject: [PATCH 1/4] Remove the oparg from DICT_MERGE and DICT_UPDATE. --- Lib/importlib/_bootstrap_external.py | 3 ++- Lib/opcode.py | 5 ++--- Python/ceval.c | 6 +++--- Python/compile.c | 12 ++++++------ 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index 2434cf06fd44445..71327b1404be46b 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -277,6 +277,7 @@ def _write_atomic(path, data, mode=0o666): # Python 3.9a2 3423 (add IS_OP, CONTAINS_OP and JUMP_IF_NOT_EXC_MATCH bytecodes #39156) # Python 3.9a2 3424 (simplify bytecodes for *value unpacking) # Python 3.9a2 3425 (simplify bytecodes for **value unpacking) +# Python 3.9a3 3426 (further simplify bytecodes for **value unpacking) # # MAGIC must change whenever the bytecode emitted by the compiler may no @@ -286,7 +287,7 @@ def _write_atomic(path, data, mode=0o666): # Whenever MAGIC_NUMBER is changed, the ranges in the magic_values array # in PC/launcher.c must also be updated. -MAGIC_NUMBER = (3425).to_bytes(2, 'little') + b'\r\n' +MAGIC_NUMBER = (3426).to_bytes(2, 'little') + b'\r\n' _RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c _PYCACHE = '__pycache__' diff --git a/Lib/opcode.py b/Lib/opcode.py index ac1aa535f66ff6d..0862fff22578ced 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -116,7 +116,8 @@ def jabs_op(name, op): def_op('INPLACE_AND', 77) def_op('INPLACE_XOR', 78) def_op('INPLACE_OR', 79) - +def_op('DICT_MERGE', 80) +def_op('DICT_UPDATE', 81) def_op('LIST_TO_TUPLE', 82) def_op('RETURN_VALUE', 83) def_op('IMPORT_STAR', 84) @@ -211,7 +212,5 @@ def jabs_op(name, op): def_op('LIST_EXTEND', 162) def_op('SET_UPDATE', 163) -def_op('DICT_MERGE', 164) -def_op('DICT_UPDATE', 165) del def_op, name_op, jrel_op, jabs_op diff --git a/Python/ceval.c b/Python/ceval.c index 2770dc6d08dd230..b835cf255b525d1 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2803,7 +2803,7 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag) case TARGET(DICT_UPDATE): { PyObject *update = POP(); - PyObject *dict = PEEK(oparg); + PyObject *dict = TOP(); if (PyDict_Update(dict, update) < 0) { if (_PyErr_ExceptionMatches(tstate, PyExc_AttributeError)) { _PyErr_Format(tstate, PyExc_TypeError, @@ -2819,10 +2819,10 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag) case TARGET(DICT_MERGE): { PyObject *update = POP(); - PyObject *dict = PEEK(oparg); + PyObject *dict = TOP(); if (_PyDict_MergeEx(dict, update, 2) < 0) { - format_kwargs_error(tstate, PEEK(2 + oparg), update); + format_kwargs_error(tstate, PEEK(3), update); Py_DECREF(update); goto error; } diff --git a/Python/compile.c b/Python/compile.c index 6776df54d47d0d8..b4f9991a6decae1 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -3880,7 +3880,7 @@ compiler_dict(struct compiler *c, expr_ty e) return 0; } if (have_dict) { - ADDOP_I(c, DICT_UPDATE, 1); + ADDOP(c, DICT_UPDATE); } have_dict = 1; elements = 0; @@ -3890,7 +3890,7 @@ compiler_dict(struct compiler *c, expr_ty e) have_dict = 1; } VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); - ADDOP_I(c, DICT_UPDATE, 1); + ADDOP(c, DICT_UPDATE); } else { if (elements == 0xFFFF) { @@ -3898,7 +3898,7 @@ compiler_dict(struct compiler *c, expr_ty e) return 0; } if (have_dict) { - ADDOP_I(c, DICT_UPDATE, 1); + ADDOP(c, DICT_UPDATE); } have_dict = 1; elements = 0; @@ -3913,7 +3913,7 @@ compiler_dict(struct compiler *c, expr_ty e) return 0; } if (have_dict) { - ADDOP_I(c, DICT_UPDATE, 1); + ADDOP(c, DICT_UPDATE); } have_dict = 1; } @@ -4303,7 +4303,7 @@ compiler_call_helper(struct compiler *c, have_dict = 1; } VISIT(c, expr, kw->value); - ADDOP_I(c, DICT_MERGE, 1); + ADDOP(c, DICT_MERGE); } else { nseen++; @@ -4315,7 +4315,7 @@ compiler_call_helper(struct compiler *c, return 0; } if (have_dict) { - ADDOP_I(c, DICT_MERGE, 1); + ADDOP(c, DICT_MERGE); } have_dict = 1; } From e0a7d68ac03f071cf5cddabf3f4b470225d71f99 Mon Sep 17 00:00:00 2001 From: Brandt Bucher Date: Tue, 28 Jan 2020 19:14:04 -0800 Subject: [PATCH 2/4] Update the documentation. --- Doc/library/dis.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 61233d98a0d1840..bfe494c795c7d69 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -880,16 +880,16 @@ All of the following opcodes use their arguments. .. versionadded:: 3.9 -.. opcode:: DICT_UPDATE (i) +.. opcode:: DICT_UPDATE - Calls ``dict.update(TOS1[-i], TOS)``. Used to build dicts. + Calls ``dict.update(TOS1, TOS)``. Used to build dicts. .. versionadded:: 3.9 .. opcode:: DICT_MERGE - Like :opcode:`DICT_UPDATE` but raises an exception for duplicate keys. + Like :opcode:`DICT_UPDATE` but raises an exception for duplicate keys. .. versionadded:: 3.9 From 0929b55dcd1558ccecee06f47b3d391882cead94 Mon Sep 17 00:00:00 2001 From: Brandt Bucher Date: Tue, 28 Jan 2020 19:14:23 -0800 Subject: [PATCH 3/4] Regenerate everything. --- Include/opcode.h | 4 +- Python/importlib.h | 2 +- Python/importlib_external.h | 244 ++++++++++++++++++------------------ Python/opcode_targets.h | 8 +- 4 files changed, 129 insertions(+), 129 deletions(-) diff --git a/Include/opcode.h b/Include/opcode.h index 19944fac0b9f2b3..988620f8b38348e 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -60,6 +60,8 @@ extern "C" { #define INPLACE_AND 77 #define INPLACE_XOR 78 #define INPLACE_OR 79 +#define DICT_MERGE 80 +#define DICT_UPDATE 81 #define LIST_TO_TUPLE 82 #define RETURN_VALUE 83 #define IMPORT_STAR 84 @@ -125,8 +127,6 @@ extern "C" { #define CALL_METHOD 161 #define LIST_EXTEND 162 #define SET_UPDATE 163 -#define DICT_MERGE 164 -#define DICT_UPDATE 165 /* EXCEPT_HANDLER is a special, implicit block type which is created when entering an except handler. It is not an opcode but we define it here diff --git a/Python/importlib.h b/Python/importlib.h index 7f999704f31a3f8..7f4ceb3047b35fa 100644 --- a/Python/importlib.h +++ b/Python/importlib.h @@ -370,7 +370,7 @@ const unsigned char _Py_M__importlib_bootstrap[] = { 1,12,3,6,2,114,64,0,0,0,99,1,0,0,0,0, 0,0,0,0,0,0,0,3,0,0,0,4,0,0,0,79, 0,0,0,115,14,0,0,0,124,0,124,1,105,0,124,2, - 164,1,142,1,83,0,41,1,97,46,1,0,0,114,101,109, + 80,0,142,1,83,0,41,1,97,46,1,0,0,114,101,109, 111,118,101,95,105,109,112,111,114,116,108,105,98,95,102,114, 97,109,101,115,32,105,110,32,105,109,112,111,114,116,46,99, 32,119,105,108,108,32,97,108,119,97,121,115,32,114,101,109, diff --git a/Python/importlib_external.h b/Python/importlib_external.h index d67c2a8fee4ea64..c699a21d4d7fcc6 100644 --- a/Python/importlib_external.h +++ b/Python/importlib_external.h @@ -278,7 +278,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 116,111,109,105,99,120,0,0,0,115,30,0,0,0,0,5, 16,1,6,1,16,0,6,255,4,2,2,3,14,1,40,1, 16,1,12,1,2,1,14,1,12,1,6,1,114,68,0,0, - 0,105,97,13,0,0,114,27,0,0,0,114,16,0,0,0, + 0,105,98,13,0,0,114,27,0,0,0,114,16,0,0,0, 115,2,0,0,0,13,10,90,11,95,95,112,121,99,97,99, 104,101,95,95,122,4,111,112,116,45,122,3,46,112,121,122, 4,46,112,121,99,78,41,1,218,12,111,112,116,105,109,105, @@ -392,7 +392,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 116,95,102,105,108,101,110,97,109,101,218,8,102,105,108,101, 110,97,109,101,114,3,0,0,0,114,3,0,0,0,114,6, 0,0,0,218,17,99,97,99,104,101,95,102,114,111,109,95, - 115,111,117,114,99,101,45,1,0,0,115,72,0,0,0,0, + 115,111,117,114,99,101,46,1,0,0,115,72,0,0,0,0, 18,8,1,6,1,2,255,4,2,8,1,4,1,8,1,12, 1,10,1,12,1,16,1,8,1,8,1,8,1,24,1,8, 1,12,1,6,2,8,1,8,1,8,1,8,1,14,1,14, @@ -473,7 +473,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 95,108,101,118,101,108,90,13,98,97,115,101,95,102,105,108, 101,110,97,109,101,114,3,0,0,0,114,3,0,0,0,114, 6,0,0,0,218,17,115,111,117,114,99,101,95,102,114,111, - 109,95,99,97,99,104,101,116,1,0,0,115,52,0,0,0, + 109,95,99,97,99,104,101,117,1,0,0,115,52,0,0,0, 0,9,12,1,8,1,10,1,12,1,4,1,10,1,12,1, 14,1,16,1,4,1,4,1,12,1,8,1,18,2,10,1, 8,1,16,1,10,1,16,1,10,1,14,2,16,1,10,1, @@ -508,7 +508,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 101,120,116,101,110,115,105,111,110,218,11,115,111,117,114,99, 101,95,112,97,116,104,114,3,0,0,0,114,3,0,0,0, 114,6,0,0,0,218,15,95,103,101,116,95,115,111,117,114, - 99,101,102,105,108,101,156,1,0,0,115,20,0,0,0,0, + 99,101,102,105,108,101,157,1,0,0,115,20,0,0,0,0, 7,12,1,4,1,16,1,24,1,4,1,2,1,12,1,16, 1,18,1,114,108,0,0,0,99,1,0,0,0,0,0,0, 0,0,0,0,0,1,0,0,0,8,0,0,0,67,0,0, @@ -521,7 +521,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 117,112,108,101,114,101,0,0,0,114,97,0,0,0,114,81, 0,0,0,114,88,0,0,0,41,1,114,96,0,0,0,114, 3,0,0,0,114,3,0,0,0,114,6,0,0,0,218,11, - 95,103,101,116,95,99,97,99,104,101,100,175,1,0,0,115, + 95,103,101,116,95,99,97,99,104,101,100,176,1,0,0,115, 16,0,0,0,0,1,14,1,2,1,10,1,12,1,8,1, 14,1,4,2,114,112,0,0,0,99,1,0,0,0,0,0, 0,0,0,0,0,0,2,0,0,0,8,0,0,0,67,0, @@ -536,7 +536,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,114,50,0,0,0,114,49,0,0,0,41,2,114,43,0, 0,0,114,51,0,0,0,114,3,0,0,0,114,3,0,0, 0,114,6,0,0,0,218,10,95,99,97,108,99,95,109,111, - 100,101,187,1,0,0,115,12,0,0,0,0,2,2,1,14, + 100,101,188,1,0,0,115,12,0,0,0,0,2,2,1,14, 1,12,1,10,3,8,1,114,114,0,0,0,99,1,0,0, 0,0,0,0,0,0,0,0,0,3,0,0,0,8,0,0, 0,3,0,0,0,115,66,0,0,0,100,6,135,0,102,1, @@ -565,7 +565,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,114,16,124,0,106,0,125,1,110,32,124,0,106,0,124, 1,107,3,114,48,116,1,100,1,124,0,106,0,124,1,102, 2,22,0,124,1,100,2,141,2,130,1,136,0,124,0,124, - 1,103,2,124,2,162,1,82,0,105,0,124,3,164,1,142, + 1,103,2,124,2,162,1,82,0,105,0,124,3,80,0,142, 1,83,0,41,3,78,122,30,108,111,97,100,101,114,32,102, 111,114,32,37,115,32,99,97,110,110,111,116,32,104,97,110, 100,108,101,32,37,115,169,1,218,4,110,97,109,101,41,2, @@ -574,7 +574,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 4,97,114,103,115,218,6,107,119,97,114,103,115,169,1,218, 6,109,101,116,104,111,100,114,3,0,0,0,114,6,0,0, 0,218,19,95,99,104,101,99,107,95,110,97,109,101,95,119, - 114,97,112,112,101,114,207,1,0,0,115,18,0,0,0,0, + 114,97,112,112,101,114,208,1,0,0,115,18,0,0,0,0, 1,8,1,8,1,10,1,4,1,8,255,2,1,2,255,6, 2,122,40,95,99,104,101,99,107,95,110,97,109,101,46,60, 108,111,99,97,108,115,62,46,95,99,104,101,99,107,95,110, @@ -592,7 +592,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 218,8,95,95,100,105,99,116,95,95,218,6,117,112,100,97, 116,101,41,3,90,3,110,101,119,90,3,111,108,100,114,66, 0,0,0,114,3,0,0,0,114,3,0,0,0,114,6,0, - 0,0,218,5,95,119,114,97,112,218,1,0,0,115,8,0, + 0,0,218,5,95,119,114,97,112,219,1,0,0,115,8,0, 0,0,0,1,8,1,10,1,20,1,122,26,95,99,104,101, 99,107,95,110,97,109,101,46,60,108,111,99,97,108,115,62, 46,95,119,114,97,112,41,1,78,41,3,218,10,95,98,111, @@ -600,7 +600,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 109,101,69,114,114,111,114,41,3,114,122,0,0,0,114,123, 0,0,0,114,133,0,0,0,114,3,0,0,0,114,121,0, 0,0,114,6,0,0,0,218,11,95,99,104,101,99,107,95, - 110,97,109,101,199,1,0,0,115,14,0,0,0,0,8,14, + 110,97,109,101,200,1,0,0,115,14,0,0,0,0,8,14, 7,2,1,10,1,12,2,14,5,10,1,114,136,0,0,0, 99,2,0,0,0,0,0,0,0,0,0,0,0,5,0,0, 0,6,0,0,0,67,0,0,0,115,60,0,0,0,124,0, @@ -628,20 +628,20 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 218,6,108,111,97,100,101,114,218,8,112,111,114,116,105,111, 110,115,218,3,109,115,103,114,3,0,0,0,114,3,0,0, 0,114,6,0,0,0,218,17,95,102,105,110,100,95,109,111, - 100,117,108,101,95,115,104,105,109,227,1,0,0,115,10,0, + 100,117,108,101,95,115,104,105,109,228,1,0,0,115,10,0, 0,0,0,10,14,1,16,1,4,1,22,1,114,143,0,0, 0,99,3,0,0,0,0,0,0,0,0,0,0,0,6,0, 0,0,4,0,0,0,67,0,0,0,115,166,0,0,0,124, 0,100,1,100,2,133,2,25,0,125,3,124,3,116,0,107, 3,114,64,100,3,124,1,155,2,100,4,124,3,155,2,157, 4,125,4,116,1,160,2,100,5,124,4,161,2,1,0,116, - 3,124,4,102,1,105,0,124,2,164,1,142,1,130,1,116, + 3,124,4,102,1,105,0,124,2,80,0,142,1,130,1,116, 4,124,0,131,1,100,6,107,0,114,106,100,7,124,1,155, 2,157,2,125,4,116,1,160,2,100,5,124,4,161,2,1, 0,116,5,124,4,131,1,130,1,116,6,124,0,100,2,100, 8,133,2,25,0,131,1,125,5,124,5,100,9,64,0,114, 162,100,10,124,5,155,2,100,11,124,1,155,2,157,4,125, - 4,116,3,124,4,102,1,105,0,124,2,164,1,142,1,130, + 4,116,3,124,4,102,1,105,0,124,2,80,0,142,1,130, 1,124,5,83,0,41,12,97,84,2,0,0,80,101,114,102, 111,114,109,32,98,97,115,105,99,32,118,97,108,105,100,105, 116,121,32,99,104,101,99,107,105,110,103,32,111,102,32,97, @@ -695,7 +695,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 11,101,120,99,95,100,101,116,97,105,108,115,90,5,109,97, 103,105,99,114,92,0,0,0,114,82,0,0,0,114,3,0, 0,0,114,3,0,0,0,114,6,0,0,0,218,13,95,99, - 108,97,115,115,105,102,121,95,112,121,99,244,1,0,0,115, + 108,97,115,115,105,102,121,95,112,121,99,245,1,0,0,115, 28,0,0,0,0,16,12,1,8,1,16,1,12,1,16,1, 12,1,10,1,12,1,8,1,16,2,8,1,16,1,16,1, 114,152,0,0,0,99,5,0,0,0,0,0,0,0,0,0, @@ -703,11 +703,11 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,0,116,0,124,0,100,1,100,2,133,2,25,0,131, 1,124,1,100,3,64,0,107,3,114,62,100,4,124,3,155, 2,157,2,125,5,116,1,160,2,100,5,124,5,161,2,1, - 0,116,3,124,5,102,1,105,0,124,4,164,1,142,1,130, + 0,116,3,124,5,102,1,105,0,124,4,80,0,142,1,130, 1,124,2,100,6,117,1,114,116,116,0,124,0,100,2,100, 7,133,2,25,0,131,1,124,2,100,3,64,0,107,3,114, 116,116,3,100,4,124,3,155,2,157,2,102,1,105,0,124, - 4,164,1,142,1,130,1,100,6,83,0,41,8,97,7,2, + 4,80,0,142,1,130,1,100,6,83,0,41,8,97,7,2, 0,0,86,97,108,105,100,97,116,101,32,97,32,112,121,99, 32,97,103,97,105,110,115,116,32,116,104,101,32,115,111,117, 114,99,101,32,108,97,115,116,45,109,111,100,105,102,105,101, @@ -750,13 +750,13 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 105,122,101,114,116,0,0,0,114,151,0,0,0,114,92,0, 0,0,114,3,0,0,0,114,3,0,0,0,114,6,0,0, 0,218,23,95,118,97,108,105,100,97,116,101,95,116,105,109, - 101,115,116,97,109,112,95,112,121,99,21,2,0,0,115,16, + 101,115,116,97,109,112,95,112,121,99,22,2,0,0,115,16, 0,0,0,0,19,24,1,10,1,12,1,16,1,8,1,22, 255,2,2,114,156,0,0,0,99,4,0,0,0,0,0,0, 0,0,0,0,0,4,0,0,0,4,0,0,0,67,0,0, 0,115,42,0,0,0,124,0,100,1,100,2,133,2,25,0, 124,1,107,3,114,38,116,0,100,3,124,2,155,2,157,2, - 102,1,105,0,124,3,164,1,142,1,130,1,100,4,83,0, + 102,1,105,0,124,3,80,0,142,1,130,1,100,4,83,0, 41,5,97,243,1,0,0,86,97,108,105,100,97,116,101,32, 97,32,104,97,115,104,45,98,97,115,101,100,32,112,121,99, 32,98,121,32,99,104,101,99,107,105,110,103,32,116,104,101, @@ -796,7 +796,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,0,218,11,115,111,117,114,99,101,95,104,97,115,104, 114,116,0,0,0,114,151,0,0,0,114,3,0,0,0,114, 3,0,0,0,114,6,0,0,0,218,18,95,118,97,108,105, - 100,97,116,101,95,104,97,115,104,95,112,121,99,49,2,0, + 100,97,116,101,95,104,97,115,104,95,112,121,99,50,2,0, 0,115,12,0,0,0,0,17,16,1,2,1,8,255,4,2, 2,254,114,158,0,0,0,99,4,0,0,0,0,0,0,0, 0,0,0,0,5,0,0,0,5,0,0,0,67,0,0,0, @@ -820,7 +820,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 5,114,25,0,0,0,114,116,0,0,0,114,106,0,0,0, 114,107,0,0,0,218,4,99,111,100,101,114,3,0,0,0, 114,3,0,0,0,114,6,0,0,0,218,17,95,99,111,109, - 112,105,108,101,95,98,121,116,101,99,111,100,101,73,2,0, + 112,105,108,101,95,98,121,116,101,99,111,100,101,74,2,0, 0,115,20,0,0,0,0,2,10,1,10,1,12,1,8,1, 12,1,4,2,10,1,2,0,2,255,114,165,0,0,0,114, 72,0,0,0,99,3,0,0,0,0,0,0,0,0,0,0, @@ -839,7 +839,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 109,116,105,109,101,114,155,0,0,0,114,25,0,0,0,114, 3,0,0,0,114,3,0,0,0,114,6,0,0,0,218,22, 95,99,111,100,101,95,116,111,95,116,105,109,101,115,116,97, - 109,112,95,112,121,99,86,2,0,0,115,12,0,0,0,0, + 109,112,95,112,121,99,87,2,0,0,115,12,0,0,0,0, 2,8,1,14,1,14,1,14,1,16,1,114,170,0,0,0, 84,99,3,0,0,0,0,0,0,0,0,0,0,0,5,0, 0,0,5,0,0,0,67,0,0,0,115,80,0,0,0,116, @@ -857,7 +857,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 157,0,0,0,90,7,99,104,101,99,107,101,100,114,25,0, 0,0,114,82,0,0,0,114,3,0,0,0,114,3,0,0, 0,114,6,0,0,0,218,17,95,99,111,100,101,95,116,111, - 95,104,97,115,104,95,112,121,99,96,2,0,0,115,14,0, + 95,104,97,115,104,95,112,121,99,97,2,0,0,115,14,0, 0,0,0,2,8,1,12,1,14,1,16,1,10,1,16,1, 114,171,0,0,0,99,1,0,0,0,0,0,0,0,0,0, 0,0,5,0,0,0,6,0,0,0,67,0,0,0,115,62, @@ -885,7 +885,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 105,110,103,90,15,110,101,119,108,105,110,101,95,100,101,99, 111,100,101,114,114,3,0,0,0,114,3,0,0,0,114,6, 0,0,0,218,13,100,101,99,111,100,101,95,115,111,117,114, - 99,101,107,2,0,0,115,10,0,0,0,0,5,8,1,12, + 99,101,108,2,0,0,115,10,0,0,0,0,5,8,1,12, 1,10,1,12,1,114,176,0,0,0,169,2,114,140,0,0, 0,218,26,115,117,98,109,111,100,117,108,101,95,115,101,97, 114,99,104,95,108,111,99,97,116,105,111,110,115,99,2,0, @@ -946,7 +946,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 120,101,115,114,182,0,0,0,90,7,100,105,114,110,97,109, 101,114,3,0,0,0,114,3,0,0,0,114,6,0,0,0, 218,23,115,112,101,99,95,102,114,111,109,95,102,105,108,101, - 95,108,111,99,97,116,105,111,110,124,2,0,0,115,62,0, + 95,108,111,99,97,116,105,111,110,125,2,0,0,115,62,0, 0,0,0,12,8,4,4,1,10,2,2,1,14,1,12,1, 8,2,10,8,16,1,6,3,8,1,14,1,14,1,10,1, 6,1,6,2,4,3,8,2,10,1,2,1,14,1,12,1, @@ -984,7 +984,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 65,67,72,73,78,69,41,2,218,3,99,108,115,114,5,0, 0,0,114,3,0,0,0,114,3,0,0,0,114,6,0,0, 0,218,14,95,111,112,101,110,95,114,101,103,105,115,116,114, - 121,204,2,0,0,115,8,0,0,0,0,2,2,1,16,1, + 121,205,2,0,0,115,8,0,0,0,0,2,2,1,16,1, 12,1,122,36,87,105,110,100,111,119,115,82,101,103,105,115, 116,114,121,70,105,110,100,101,114,46,95,111,112,101,110,95, 114,101,103,105,115,116,114,121,99,2,0,0,0,0,0,0, @@ -1011,7 +1011,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,5,0,0,0,90,4,104,107,101,121,218,8,102,105,108, 101,112,97,116,104,114,3,0,0,0,114,3,0,0,0,114, 6,0,0,0,218,16,95,115,101,97,114,99,104,95,114,101, - 103,105,115,116,114,121,211,2,0,0,115,24,0,0,0,0, + 103,105,115,116,114,121,212,2,0,0,115,24,0,0,0,0, 2,6,1,8,2,6,1,6,1,16,255,6,2,2,1,12, 1,46,1,12,1,8,1,122,38,87,105,110,100,111,119,115, 82,101,103,105,115,116,114,121,70,105,110,100,101,114,46,95, @@ -1033,7 +1033,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,114,43,0,0,0,218,6,116,97,114,103,101,116,114,199, 0,0,0,114,140,0,0,0,114,189,0,0,0,114,187,0, 0,0,114,3,0,0,0,114,3,0,0,0,114,6,0,0, - 0,218,9,102,105,110,100,95,115,112,101,99,226,2,0,0, + 0,218,9,102,105,110,100,95,115,112,101,99,227,2,0,0, 115,28,0,0,0,0,2,10,1,8,1,4,1,2,1,12, 1,12,1,8,1,14,1,14,1,6,1,8,1,2,254,6, 3,122,31,87,105,110,100,111,119,115,82,101,103,105,115,116, @@ -1053,7 +1053,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 4,114,193,0,0,0,114,139,0,0,0,114,43,0,0,0, 114,187,0,0,0,114,3,0,0,0,114,3,0,0,0,114, 6,0,0,0,218,11,102,105,110,100,95,109,111,100,117,108, - 101,242,2,0,0,115,8,0,0,0,0,7,12,1,8,1, + 101,243,2,0,0,115,8,0,0,0,0,7,12,1,8,1, 6,2,122,33,87,105,110,100,111,119,115,82,101,103,105,115, 116,114,121,70,105,110,100,101,114,46,102,105,110,100,95,109, 111,100,117,108,101,41,2,78,78,41,1,78,41,12,114,125, @@ -1062,7 +1062,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,218,11,99,108,97,115,115,109,101,116,104,111,100,114,194, 0,0,0,114,200,0,0,0,114,203,0,0,0,114,206,0, 0,0,114,3,0,0,0,114,3,0,0,0,114,3,0,0, - 0,114,6,0,0,0,114,191,0,0,0,192,2,0,0,115, + 0,114,6,0,0,0,114,191,0,0,0,193,2,0,0,115, 28,0,0,0,8,2,4,3,2,255,2,4,2,255,2,3, 4,2,2,1,10,6,2,1,10,14,2,1,12,15,2,1, 114,191,0,0,0,99,0,0,0,0,0,0,0,0,0,0, @@ -1098,7 +1098,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,0,114,139,0,0,0,114,96,0,0,0,90,13,102, 105,108,101,110,97,109,101,95,98,97,115,101,90,9,116,97, 105,108,95,110,97,109,101,114,3,0,0,0,114,3,0,0, - 0,114,6,0,0,0,114,182,0,0,0,5,3,0,0,115, + 0,114,6,0,0,0,114,182,0,0,0,6,3,0,0,115, 8,0,0,0,0,3,18,1,16,1,14,1,122,24,95,76, 111,97,100,101,114,66,97,115,105,99,115,46,105,115,95,112, 97,99,107,97,103,101,99,2,0,0,0,0,0,0,0,0, @@ -1109,7 +1109,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 97,116,105,111,110,46,78,114,3,0,0,0,169,2,114,118, 0,0,0,114,187,0,0,0,114,3,0,0,0,114,3,0, 0,0,114,6,0,0,0,218,13,99,114,101,97,116,101,95, - 109,111,100,117,108,101,13,3,0,0,115,2,0,0,0,0, + 109,111,100,117,108,101,14,3,0,0,115,2,0,0,0,0, 1,122,27,95,76,111,97,100,101,114,66,97,115,105,99,115, 46,99,114,101,97,116,101,95,109,111,100,117,108,101,99,2, 0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,5, @@ -1129,7 +1129,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 120,101,99,114,131,0,0,0,41,3,114,118,0,0,0,218, 6,109,111,100,117,108,101,114,164,0,0,0,114,3,0,0, 0,114,3,0,0,0,114,6,0,0,0,218,11,101,120,101, - 99,95,109,111,100,117,108,101,16,3,0,0,115,12,0,0, + 99,95,109,111,100,117,108,101,17,3,0,0,115,12,0,0, 0,0,2,12,1,8,1,6,1,4,255,6,2,122,25,95, 76,111,97,100,101,114,66,97,115,105,99,115,46,101,120,101, 99,95,109,111,100,117,108,101,99,2,0,0,0,0,0,0, @@ -1141,13 +1141,13 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 111,100,117,108,101,95,115,104,105,109,169,2,114,118,0,0, 0,114,139,0,0,0,114,3,0,0,0,114,3,0,0,0, 114,6,0,0,0,218,11,108,111,97,100,95,109,111,100,117, - 108,101,24,3,0,0,115,2,0,0,0,0,2,122,25,95, + 108,101,25,3,0,0,115,2,0,0,0,0,2,122,25,95, 76,111,97,100,101,114,66,97,115,105,99,115,46,108,111,97, 100,95,109,111,100,117,108,101,78,41,8,114,125,0,0,0, 114,124,0,0,0,114,126,0,0,0,114,127,0,0,0,114, 182,0,0,0,114,212,0,0,0,114,217,0,0,0,114,220, 0,0,0,114,3,0,0,0,114,3,0,0,0,114,3,0, - 0,0,114,6,0,0,0,114,208,0,0,0,0,3,0,0, + 0,0,114,6,0,0,0,114,208,0,0,0,1,3,0,0, 115,10,0,0,0,8,2,4,3,8,8,8,3,8,8,114, 208,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,3,0,0,0,64,0,0,0,115,74,0, @@ -1172,7 +1172,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 100,46,10,32,32,32,32,32,32,32,32,78,41,1,114,49, 0,0,0,169,2,114,118,0,0,0,114,43,0,0,0,114, 3,0,0,0,114,3,0,0,0,114,6,0,0,0,218,10, - 112,97,116,104,95,109,116,105,109,101,31,3,0,0,115,2, + 112,97,116,104,95,109,116,105,109,101,32,3,0,0,115,2, 0,0,0,0,6,122,23,83,111,117,114,99,101,76,111,97, 100,101,114,46,112,97,116,104,95,109,116,105,109,101,99,2, 0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4, @@ -1206,7 +1206,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 110,100,108,101,100,46,10,32,32,32,32,32,32,32,32,114, 169,0,0,0,41,1,114,223,0,0,0,114,222,0,0,0, 114,3,0,0,0,114,3,0,0,0,114,6,0,0,0,218, - 10,112,97,116,104,95,115,116,97,116,115,39,3,0,0,115, + 10,112,97,116,104,95,115,116,97,116,115,40,3,0,0,115, 2,0,0,0,0,12,122,23,83,111,117,114,99,101,76,111, 97,100,101,114,46,112,97,116,104,95,115,116,97,116,115,99, 4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0, @@ -1230,7 +1230,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 118,0,0,0,114,107,0,0,0,90,10,99,97,99,104,101, 95,112,97,116,104,114,25,0,0,0,114,3,0,0,0,114, 3,0,0,0,114,6,0,0,0,218,15,95,99,97,99,104, - 101,95,98,121,116,101,99,111,100,101,53,3,0,0,115,2, + 101,95,98,121,116,101,99,111,100,101,54,3,0,0,115,2, 0,0,0,0,8,122,28,83,111,117,114,99,101,76,111,97, 100,101,114,46,95,99,97,99,104,101,95,98,121,116,101,99, 111,100,101,99,3,0,0,0,0,0,0,0,0,0,0,0, @@ -1247,7 +1247,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 102,105,108,101,115,46,10,32,32,32,32,32,32,32,32,78, 114,3,0,0,0,41,3,114,118,0,0,0,114,43,0,0, 0,114,25,0,0,0,114,3,0,0,0,114,3,0,0,0, - 114,6,0,0,0,114,225,0,0,0,63,3,0,0,115,2, + 114,6,0,0,0,114,225,0,0,0,64,3,0,0,115,2, 0,0,0,0,1,122,21,83,111,117,114,99,101,76,111,97, 100,101,114,46,115,101,116,95,100,97,116,97,99,2,0,0, 0,0,0,0,0,0,0,0,0,5,0,0,0,10,0,0, @@ -1268,7 +1268,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,176,0,0,0,41,5,114,118,0,0,0,114,139,0,0, 0,114,43,0,0,0,114,174,0,0,0,218,3,101,120,99, 114,3,0,0,0,114,3,0,0,0,114,6,0,0,0,218, - 10,103,101,116,95,115,111,117,114,99,101,70,3,0,0,115, + 10,103,101,116,95,115,111,117,114,99,101,71,3,0,0,115, 20,0,0,0,0,2,10,1,2,1,14,1,14,1,4,1, 2,255,4,1,2,255,24,2,122,23,83,111,117,114,99,101, 76,111,97,100,101,114,46,103,101,116,95,115,111,117,114,99, @@ -1291,7 +1291,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 118,0,0,0,114,25,0,0,0,114,43,0,0,0,114,230, 0,0,0,114,3,0,0,0,114,3,0,0,0,114,6,0, 0,0,218,14,115,111,117,114,99,101,95,116,111,95,99,111, - 100,101,80,3,0,0,115,8,0,0,0,0,5,12,1,2, + 100,101,81,3,0,0,115,8,0,0,0,0,5,12,1,2, 0,2,255,122,27,83,111,117,114,99,101,76,111,97,100,101, 114,46,115,111,117,114,99,101,95,116,111,95,99,111,100,101, 99,2,0,0,0,0,0,0,0,0,0,0,0,15,0,0, @@ -1368,7 +1368,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,82,0,0,0,90,10,98,121,116,101,115,95,100,97,116, 97,90,11,99,111,100,101,95,111,98,106,101,99,116,114,3, 0,0,0,114,3,0,0,0,114,6,0,0,0,114,213,0, - 0,0,88,3,0,0,115,152,0,0,0,0,7,10,1,4, + 0,0,89,3,0,0,115,152,0,0,0,0,7,10,1,4, 1,4,1,4,1,4,1,4,1,2,1,12,1,12,1,12, 2,2,1,14,1,12,1,8,2,12,1,2,1,14,1,12, 1,6,3,2,1,2,254,6,4,2,1,12,1,16,1,12, @@ -1384,7 +1384,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,114,224,0,0,0,114,226,0,0,0,114,225,0,0,0, 114,229,0,0,0,114,233,0,0,0,114,213,0,0,0,114, 3,0,0,0,114,3,0,0,0,114,3,0,0,0,114,6, - 0,0,0,114,221,0,0,0,29,3,0,0,115,14,0,0, + 0,0,0,114,221,0,0,0,30,3,0,0,115,14,0,0, 0,8,2,8,8,8,14,8,10,8,7,8,10,14,8,114, 221,0,0,0,99,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4,0,0,0,0,0,0,0,115,124,0, @@ -1413,7 +1413,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 104,101,10,32,32,32,32,32,32,32,32,102,105,110,100,101, 114,46,78,114,159,0,0,0,41,3,114,118,0,0,0,114, 139,0,0,0,114,43,0,0,0,114,3,0,0,0,114,3, - 0,0,0,114,6,0,0,0,114,209,0,0,0,178,3,0, + 0,0,0,114,6,0,0,0,114,209,0,0,0,179,3,0, 0,115,4,0,0,0,0,3,6,1,122,19,70,105,108,101, 76,111,97,100,101,114,46,95,95,105,110,105,116,95,95,99, 2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0, @@ -1423,7 +1423,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 99,108,97,115,115,95,95,114,131,0,0,0,169,2,114,118, 0,0,0,90,5,111,116,104,101,114,114,3,0,0,0,114, 3,0,0,0,114,6,0,0,0,218,6,95,95,101,113,95, - 95,184,3,0,0,115,6,0,0,0,0,1,12,1,10,255, + 95,185,3,0,0,115,6,0,0,0,0,1,12,1,10,255, 122,17,70,105,108,101,76,111,97,100,101,114,46,95,95,101, 113,95,95,99,1,0,0,0,0,0,0,0,0,0,0,0, 1,0,0,0,3,0,0,0,67,0,0,0,115,20,0,0, @@ -1431,7 +1431,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 1,65,0,83,0,114,109,0,0,0,169,3,218,4,104,97, 115,104,114,116,0,0,0,114,43,0,0,0,169,1,114,118, 0,0,0,114,3,0,0,0,114,3,0,0,0,114,6,0, - 0,0,218,8,95,95,104,97,115,104,95,95,188,3,0,0, + 0,0,218,8,95,95,104,97,115,104,95,95,189,3,0,0, 115,2,0,0,0,0,1,122,19,70,105,108,101,76,111,97, 100,101,114,46,95,95,104,97,115,104,95,95,99,2,0,0, 0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0, @@ -1446,7 +1446,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 32,32,41,3,218,5,115,117,112,101,114,114,239,0,0,0, 114,220,0,0,0,114,219,0,0,0,169,1,114,241,0,0, 0,114,3,0,0,0,114,6,0,0,0,114,220,0,0,0, - 191,3,0,0,115,2,0,0,0,0,10,122,22,70,105,108, + 192,3,0,0,115,2,0,0,0,0,10,122,22,70,105,108, 101,76,111,97,100,101,114,46,108,111,97,100,95,109,111,100, 117,108,101,99,2,0,0,0,0,0,0,0,0,0,0,0, 2,0,0,0,1,0,0,0,67,0,0,0,115,6,0,0, @@ -1456,7 +1456,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 32,102,111,117,110,100,32,98,121,32,116,104,101,32,102,105, 110,100,101,114,46,114,47,0,0,0,114,219,0,0,0,114, 3,0,0,0,114,3,0,0,0,114,6,0,0,0,114,179, - 0,0,0,203,3,0,0,115,2,0,0,0,0,3,122,23, + 0,0,0,204,3,0,0,115,2,0,0,0,0,3,122,23, 70,105,108,101,76,111,97,100,101,114,46,103,101,116,95,102, 105,108,101,110,97,109,101,99,2,0,0,0,0,0,0,0, 0,0,0,0,3,0,0,0,8,0,0,0,67,0,0,0, @@ -1477,7 +1477,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 111,100,101,114,84,0,0,0,90,4,114,101,97,100,114,64, 0,0,0,41,3,114,118,0,0,0,114,43,0,0,0,114, 67,0,0,0,114,3,0,0,0,114,3,0,0,0,114,6, - 0,0,0,114,227,0,0,0,208,3,0,0,115,10,0,0, + 0,0,0,114,227,0,0,0,209,3,0,0,115,10,0,0, 0,0,2,14,1,16,1,40,2,14,1,122,19,70,105,108, 101,76,111,97,100,101,114,46,103,101,116,95,100,97,116,97, 99,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0, @@ -1486,7 +1486,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,109,0,0,0,41,1,114,182,0,0,0,169,2,114,118, 0,0,0,114,216,0,0,0,114,3,0,0,0,114,3,0, 0,0,114,6,0,0,0,218,19,103,101,116,95,114,101,115, - 111,117,114,99,101,95,114,101,97,100,101,114,219,3,0,0, + 111,117,114,99,101,95,114,101,97,100,101,114,220,3,0,0, 115,6,0,0,0,0,2,10,1,4,1,122,30,70,105,108, 101,76,111,97,100,101,114,46,103,101,116,95,114,101,115,111, 117,114,99,101,95,114,101,97,100,101,114,99,2,0,0,0, @@ -1499,7 +1499,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,169,3,114,118,0,0,0,90,8,114,101,115,111,117,114, 99,101,114,43,0,0,0,114,3,0,0,0,114,3,0,0, 0,114,6,0,0,0,218,13,111,112,101,110,95,114,101,115, - 111,117,114,99,101,225,3,0,0,115,4,0,0,0,0,1, + 111,117,114,99,101,226,3,0,0,115,4,0,0,0,0,1, 20,1,122,24,70,105,108,101,76,111,97,100,101,114,46,111, 112,101,110,95,114,101,115,111,117,114,99,101,99,2,0,0, 0,0,0,0,0,0,0,0,0,3,0,0,0,3,0,0, @@ -1511,7 +1511,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 70,111,117,110,100,69,114,114,111,114,114,37,0,0,0,114, 46,0,0,0,114,43,0,0,0,114,255,0,0,0,114,3, 0,0,0,114,3,0,0,0,114,6,0,0,0,218,13,114, - 101,115,111,117,114,99,101,95,112,97,116,104,229,3,0,0, + 101,115,111,117,114,99,101,95,112,97,116,104,230,3,0,0, 115,8,0,0,0,0,1,10,1,4,1,20,1,122,24,70, 105,108,101,76,111,97,100,101,114,46,114,101,115,111,117,114, 99,101,95,112,97,116,104,99,2,0,0,0,0,0,0,0, @@ -1523,7 +1523,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,114,46,0,0,0,114,43,0,0,0,114,53,0,0, 0,169,3,114,118,0,0,0,114,116,0,0,0,114,43,0, 0,0,114,3,0,0,0,114,3,0,0,0,114,6,0,0, - 0,114,2,1,0,0,235,3,0,0,115,8,0,0,0,0, + 0,114,2,1,0,0,236,3,0,0,115,8,0,0,0,0, 1,8,1,4,1,20,1,122,22,70,105,108,101,76,111,97, 100,101,114,46,105,115,95,114,101,115,111,117,114,99,101,99, 1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, @@ -1533,7 +1533,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 101,114,114,2,0,0,0,218,7,108,105,115,116,100,105,114, 114,46,0,0,0,114,43,0,0,0,114,246,0,0,0,114, 3,0,0,0,114,3,0,0,0,114,6,0,0,0,218,8, - 99,111,110,116,101,110,116,115,241,3,0,0,115,2,0,0, + 99,111,110,116,101,110,116,115,242,3,0,0,115,2,0,0, 0,0,1,122,19,70,105,108,101,76,111,97,100,101,114,46, 99,111,110,116,101,110,116,115,41,17,114,125,0,0,0,114, 124,0,0,0,114,126,0,0,0,114,127,0,0,0,114,209, @@ -1543,7 +1543,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,2,1,0,0,114,8,1,0,0,90,13,95,95,99,108, 97,115,115,99,101,108,108,95,95,114,3,0,0,0,114,3, 0,0,0,114,249,0,0,0,114,6,0,0,0,114,239,0, - 0,0,173,3,0,0,115,30,0,0,0,8,2,4,3,8, + 0,0,174,3,0,0,115,30,0,0,0,8,2,4,3,8, 6,8,4,8,3,2,1,14,11,2,1,10,4,8,11,2, 1,10,5,8,4,8,6,8,6,114,239,0,0,0,99,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3, @@ -1566,7 +1566,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 116,105,109,101,90,7,115,116,95,115,105,122,101,41,3,114, 118,0,0,0,114,43,0,0,0,114,238,0,0,0,114,3, 0,0,0,114,3,0,0,0,114,6,0,0,0,114,224,0, - 0,0,249,3,0,0,115,4,0,0,0,0,2,8,1,122, + 0,0,250,3,0,0,115,4,0,0,0,0,2,8,1,122, 27,83,111,117,114,99,101,70,105,108,101,76,111,97,100,101, 114,46,112,97,116,104,95,115,116,97,116,115,99,4,0,0, 0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0, @@ -1576,7 +1576,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,114,0,0,0,114,225,0,0,0,41,5,114,118,0,0, 0,114,107,0,0,0,114,106,0,0,0,114,25,0,0,0, 114,51,0,0,0,114,3,0,0,0,114,3,0,0,0,114, - 6,0,0,0,114,226,0,0,0,254,3,0,0,115,4,0, + 6,0,0,0,114,226,0,0,0,255,3,0,0,115,4,0, 0,0,0,2,8,1,122,32,83,111,117,114,99,101,70,105, 108,101,76,111,97,100,101,114,46,95,99,97,99,104,101,95, 98,121,116,101,99,111,100,101,114,59,0,0,0,114,11,1, @@ -1611,7 +1611,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 25,0,0,0,114,12,1,0,0,218,6,112,97,114,101,110, 116,114,96,0,0,0,114,36,0,0,0,114,32,0,0,0, 114,228,0,0,0,114,3,0,0,0,114,3,0,0,0,114, - 6,0,0,0,114,225,0,0,0,3,4,0,0,115,48,0, + 6,0,0,0,114,225,0,0,0,4,4,0,0,115,48,0, 0,0,0,2,12,1,4,2,12,1,12,1,12,2,12,1, 10,1,2,1,14,1,12,2,8,1,14,3,6,1,2,0, 2,255,4,2,28,1,2,1,12,1,16,1,16,2,8,1, @@ -1620,7 +1620,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,125,0,0,0,114,124,0,0,0,114,126,0,0,0,114, 127,0,0,0,114,224,0,0,0,114,226,0,0,0,114,225, 0,0,0,114,3,0,0,0,114,3,0,0,0,114,3,0, - 0,0,114,6,0,0,0,114,9,1,0,0,245,3,0,0, + 0,0,114,6,0,0,0,114,9,1,0,0,246,3,0,0, 115,8,0,0,0,8,2,4,2,8,5,8,5,114,9,1, 0,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,2,0,0,0,64,0,0,0,115,32,0,0,0, @@ -1642,7 +1642,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,0,114,165,0,0,0,114,235,0,0,0,41,5,114, 118,0,0,0,114,139,0,0,0,114,43,0,0,0,114,25, 0,0,0,114,151,0,0,0,114,3,0,0,0,114,3,0, - 0,0,114,6,0,0,0,114,213,0,0,0,38,4,0,0, + 0,0,114,6,0,0,0,114,213,0,0,0,39,4,0,0, 115,22,0,0,0,0,1,10,1,10,4,2,1,2,254,6, 4,12,1,2,1,14,1,2,1,2,253,122,29,83,111,117, 114,99,101,108,101,115,115,70,105,108,101,76,111,97,100,101, @@ -1653,13 +1653,13 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 104,101,114,101,32,105,115,32,110,111,32,115,111,117,114,99, 101,32,99,111,100,101,46,78,114,3,0,0,0,114,219,0, 0,0,114,3,0,0,0,114,3,0,0,0,114,6,0,0, - 0,114,229,0,0,0,54,4,0,0,115,2,0,0,0,0, + 0,114,229,0,0,0,55,4,0,0,115,2,0,0,0,0, 2,122,31,83,111,117,114,99,101,108,101,115,115,70,105,108, 101,76,111,97,100,101,114,46,103,101,116,95,115,111,117,114, 99,101,78,41,6,114,125,0,0,0,114,124,0,0,0,114, 126,0,0,0,114,127,0,0,0,114,213,0,0,0,114,229, 0,0,0,114,3,0,0,0,114,3,0,0,0,114,3,0, - 0,0,114,6,0,0,0,114,15,1,0,0,34,4,0,0, + 0,0,114,6,0,0,0,114,15,1,0,0,35,4,0,0, 115,6,0,0,0,8,2,4,2,8,16,114,15,1,0,0, 99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,3,0,0,0,64,0,0,0,115,92,0,0,0,101,0, @@ -1680,7 +1680,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 124,0,95,0,124,2,124,0,95,1,100,0,83,0,114,109, 0,0,0,114,159,0,0,0,114,5,1,0,0,114,3,0, 0,0,114,3,0,0,0,114,6,0,0,0,114,209,0,0, - 0,71,4,0,0,115,4,0,0,0,0,1,6,1,122,28, + 0,72,4,0,0,115,4,0,0,0,0,1,6,1,122,28, 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, 100,101,114,46,95,95,105,110,105,116,95,95,99,2,0,0, 0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0, @@ -1688,7 +1688,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 106,0,107,2,111,22,124,0,106,1,124,1,106,1,107,2, 83,0,114,109,0,0,0,114,240,0,0,0,114,242,0,0, 0,114,3,0,0,0,114,3,0,0,0,114,6,0,0,0, - 114,243,0,0,0,75,4,0,0,115,6,0,0,0,0,1, + 114,243,0,0,0,76,4,0,0,115,6,0,0,0,0,1, 12,1,10,255,122,26,69,120,116,101,110,115,105,111,110,70, 105,108,101,76,111,97,100,101,114,46,95,95,101,113,95,95, 99,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0, @@ -1696,7 +1696,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 124,0,106,1,131,1,116,0,124,0,106,2,131,1,65,0, 83,0,114,109,0,0,0,114,244,0,0,0,114,246,0,0, 0,114,3,0,0,0,114,3,0,0,0,114,6,0,0,0, - 114,247,0,0,0,79,4,0,0,115,2,0,0,0,0,1, + 114,247,0,0,0,80,4,0,0,115,2,0,0,0,0,1, 122,28,69,120,116,101,110,115,105,111,110,70,105,108,101,76, 111,97,100,101,114,46,95,95,104,97,115,104,95,95,99,2, 0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,5, @@ -1713,7 +1713,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 109,105,99,114,149,0,0,0,114,116,0,0,0,114,43,0, 0,0,41,3,114,118,0,0,0,114,187,0,0,0,114,216, 0,0,0,114,3,0,0,0,114,3,0,0,0,114,6,0, - 0,0,114,212,0,0,0,82,4,0,0,115,18,0,0,0, + 0,0,114,212,0,0,0,83,4,0,0,115,18,0,0,0, 0,2,4,1,4,0,2,255,4,2,6,1,4,0,4,255, 4,2,122,33,69,120,116,101,110,115,105,111,110,70,105,108, 101,76,111,97,100,101,114,46,99,114,101,97,116,101,95,109, @@ -1730,7 +1730,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,163,0,0,0,90,12,101,120,101,99,95,100,121,110,97, 109,105,99,114,149,0,0,0,114,116,0,0,0,114,43,0, 0,0,114,253,0,0,0,114,3,0,0,0,114,3,0,0, - 0,114,6,0,0,0,114,217,0,0,0,90,4,0,0,115, + 0,114,6,0,0,0,114,217,0,0,0,91,4,0,0,115, 10,0,0,0,0,2,14,1,6,1,4,0,4,255,122,31, 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, 100,101,114,46,101,120,101,99,95,109,111,100,117,108,101,99, @@ -1749,14 +1749,14 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 169,2,114,31,0,0,0,218,6,115,117,102,102,105,120,169, 1,90,9,102,105,108,101,95,110,97,109,101,114,3,0,0, 0,114,6,0,0,0,218,9,60,103,101,110,101,120,112,114, - 62,99,4,0,0,115,4,0,0,0,4,1,2,255,122,49, + 62,100,4,0,0,115,4,0,0,0,4,1,2,255,122,49, 69,120,116,101,110,115,105,111,110,70,105,108,101,76,111,97, 100,101,114,46,105,115,95,112,97,99,107,97,103,101,46,60, 108,111,99,97,108,115,62,46,60,103,101,110,101,120,112,114, 62,41,4,114,46,0,0,0,114,43,0,0,0,218,3,97, 110,121,218,18,69,88,84,69,78,83,73,79,78,95,83,85, 70,70,73,88,69,83,114,219,0,0,0,114,3,0,0,0, - 114,18,1,0,0,114,6,0,0,0,114,182,0,0,0,96, + 114,18,1,0,0,114,6,0,0,0,114,182,0,0,0,97, 4,0,0,115,8,0,0,0,0,2,14,1,12,1,2,255, 122,30,69,120,116,101,110,115,105,111,110,70,105,108,101,76, 111,97,100,101,114,46,105,115,95,112,97,99,107,97,103,101, @@ -1768,7 +1768,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 99,114,101,97,116,101,32,97,32,99,111,100,101,32,111,98, 106,101,99,116,46,78,114,3,0,0,0,114,219,0,0,0, 114,3,0,0,0,114,3,0,0,0,114,6,0,0,0,114, - 213,0,0,0,102,4,0,0,115,2,0,0,0,0,2,122, + 213,0,0,0,103,4,0,0,115,2,0,0,0,0,2,122, 28,69,120,116,101,110,115,105,111,110,70,105,108,101,76,111, 97,100,101,114,46,103,101,116,95,99,111,100,101,99,2,0, 0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0, @@ -1778,14 +1778,14 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 108,101,115,32,104,97,118,101,32,110,111,32,115,111,117,114, 99,101,32,99,111,100,101,46,78,114,3,0,0,0,114,219, 0,0,0,114,3,0,0,0,114,3,0,0,0,114,6,0, - 0,0,114,229,0,0,0,106,4,0,0,115,2,0,0,0, + 0,0,114,229,0,0,0,107,4,0,0,115,2,0,0,0, 0,2,122,30,69,120,116,101,110,115,105,111,110,70,105,108, 101,76,111,97,100,101,114,46,103,101,116,95,115,111,117,114, 99,101,99,2,0,0,0,0,0,0,0,0,0,0,0,2, 0,0,0,1,0,0,0,67,0,0,0,115,6,0,0,0, 124,0,106,0,83,0,114,250,0,0,0,114,47,0,0,0, 114,219,0,0,0,114,3,0,0,0,114,3,0,0,0,114, - 6,0,0,0,114,179,0,0,0,110,4,0,0,115,2,0, + 6,0,0,0,114,179,0,0,0,111,4,0,0,115,2,0, 0,0,0,3,122,32,69,120,116,101,110,115,105,111,110,70, 105,108,101,76,111,97,100,101,114,46,103,101,116,95,102,105, 108,101,110,97,109,101,78,41,14,114,125,0,0,0,114,124, @@ -1794,7 +1794,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,114,217,0,0,0,114,182,0,0,0,114,213,0,0,0, 114,229,0,0,0,114,136,0,0,0,114,179,0,0,0,114, 3,0,0,0,114,3,0,0,0,114,3,0,0,0,114,6, - 0,0,0,114,252,0,0,0,63,4,0,0,115,22,0,0, + 0,0,0,114,252,0,0,0,64,4,0,0,115,22,0,0, 0,8,2,4,6,8,4,8,4,8,3,8,8,8,6,8, 6,8,4,8,4,2,1,114,252,0,0,0,99,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0, @@ -1837,7 +1837,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,118,0,0,0,114,116,0,0,0,114,43,0,0,0,90, 11,112,97,116,104,95,102,105,110,100,101,114,114,3,0,0, 0,114,3,0,0,0,114,6,0,0,0,114,209,0,0,0, - 123,4,0,0,115,8,0,0,0,0,1,6,1,6,1,14, + 124,4,0,0,115,8,0,0,0,0,1,6,1,6,1,14, 1,122,23,95,78,97,109,101,115,112,97,99,101,80,97,116, 104,46,95,95,105,110,105,116,95,95,99,1,0,0,0,0, 0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,67, @@ -1854,7 +1854,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,0,114,14,1,0,0,218,3,100,111,116,90,2,109, 101,114,3,0,0,0,114,3,0,0,0,114,6,0,0,0, 218,23,95,102,105,110,100,95,112,97,114,101,110,116,95,112, - 97,116,104,95,110,97,109,101,115,129,4,0,0,115,8,0, + 97,116,104,95,110,97,109,101,115,130,4,0,0,115,8,0, 0,0,0,2,18,1,8,2,4,3,122,38,95,78,97,109, 101,115,112,97,99,101,80,97,116,104,46,95,102,105,110,100, 95,112,97,114,101,110,116,95,112,97,116,104,95,110,97,109, @@ -1867,7 +1867,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,90,18,112,97,114,101,110,116,95,109,111,100,117,108, 101,95,110,97,109,101,90,14,112,97,116,104,95,97,116,116, 114,95,110,97,109,101,114,3,0,0,0,114,3,0,0,0, - 114,6,0,0,0,114,25,1,0,0,139,4,0,0,115,4, + 114,6,0,0,0,114,25,1,0,0,140,4,0,0,115,4, 0,0,0,0,1,12,1,122,31,95,78,97,109,101,115,112, 97,99,101,80,97,116,104,46,95,103,101,116,95,112,97,114, 101,110,116,95,112,97,116,104,99,1,0,0,0,0,0,0, @@ -1883,7 +1883,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,24,1,0,0,41,3,114,118,0,0,0,90,11,112,97, 114,101,110,116,95,112,97,116,104,114,187,0,0,0,114,3, 0,0,0,114,3,0,0,0,114,6,0,0,0,218,12,95, - 114,101,99,97,108,99,117,108,97,116,101,143,4,0,0,115, + 114,101,99,97,108,99,117,108,97,116,101,144,4,0,0,115, 16,0,0,0,0,2,12,1,10,1,14,3,18,1,6,1, 8,1,6,1,122,27,95,78,97,109,101,115,112,97,99,101, 80,97,116,104,46,95,114,101,99,97,108,99,117,108,97,116, @@ -1892,7 +1892,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,124,0,160,1,161,0,131,1,83,0,114,109,0,0,0, 41,2,114,6,1,0,0,114,32,1,0,0,114,246,0,0, 0,114,3,0,0,0,114,3,0,0,0,114,6,0,0,0, - 218,8,95,95,105,116,101,114,95,95,156,4,0,0,115,2, + 218,8,95,95,105,116,101,114,95,95,157,4,0,0,115,2, 0,0,0,0,1,122,23,95,78,97,109,101,115,112,97,99, 101,80,97,116,104,46,95,95,105,116,101,114,95,95,99,2, 0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2, @@ -1900,7 +1900,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 161,0,124,1,25,0,83,0,114,109,0,0,0,169,1,114, 32,1,0,0,41,2,114,118,0,0,0,218,5,105,110,100, 101,120,114,3,0,0,0,114,3,0,0,0,114,6,0,0, - 0,218,11,95,95,103,101,116,105,116,101,109,95,95,159,4, + 0,218,11,95,95,103,101,116,105,116,101,109,95,95,160,4, 0,0,115,2,0,0,0,0,1,122,26,95,78,97,109,101, 115,112,97,99,101,80,97,116,104,46,95,95,103,101,116,105, 116,101,109,95,95,99,3,0,0,0,0,0,0,0,0,0, @@ -1909,7 +1909,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,114,109,0,0,0,41,1,114,24,1,0,0,41,3,114, 118,0,0,0,114,35,1,0,0,114,43,0,0,0,114,3, 0,0,0,114,3,0,0,0,114,6,0,0,0,218,11,95, - 95,115,101,116,105,116,101,109,95,95,162,4,0,0,115,2, + 95,115,101,116,105,116,101,109,95,95,163,4,0,0,115,2, 0,0,0,0,1,122,26,95,78,97,109,101,115,112,97,99, 101,80,97,116,104,46,95,95,115,101,116,105,116,101,109,95, 95,99,1,0,0,0,0,0,0,0,0,0,0,0,1,0, @@ -1917,7 +1917,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,124,0,160,1,161,0,131,1,83,0,114,109,0,0,0, 41,2,114,22,0,0,0,114,32,1,0,0,114,246,0,0, 0,114,3,0,0,0,114,3,0,0,0,114,6,0,0,0, - 218,7,95,95,108,101,110,95,95,165,4,0,0,115,2,0, + 218,7,95,95,108,101,110,95,95,166,4,0,0,115,2,0, 0,0,0,1,122,22,95,78,97,109,101,115,112,97,99,101, 80,97,116,104,46,95,95,108,101,110,95,95,99,1,0,0, 0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0, @@ -1926,7 +1926,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 115,112,97,99,101,80,97,116,104,40,123,33,114,125,41,41, 2,114,61,0,0,0,114,24,1,0,0,114,246,0,0,0, 114,3,0,0,0,114,3,0,0,0,114,6,0,0,0,218, - 8,95,95,114,101,112,114,95,95,168,4,0,0,115,2,0, + 8,95,95,114,101,112,114,95,95,169,4,0,0,115,2,0, 0,0,0,1,122,23,95,78,97,109,101,115,112,97,99,101, 80,97,116,104,46,95,95,114,101,112,114,95,95,99,2,0, 0,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0, @@ -1934,7 +1934,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,161,0,118,0,83,0,114,109,0,0,0,114,34,1,0, 0,169,2,114,118,0,0,0,218,4,105,116,101,109,114,3, 0,0,0,114,3,0,0,0,114,6,0,0,0,218,12,95, - 95,99,111,110,116,97,105,110,115,95,95,171,4,0,0,115, + 95,99,111,110,116,97,105,110,115,95,95,172,4,0,0,115, 2,0,0,0,0,1,122,27,95,78,97,109,101,115,112,97, 99,101,80,97,116,104,46,95,95,99,111,110,116,97,105,110, 115,95,95,99,2,0,0,0,0,0,0,0,0,0,0,0, @@ -1942,7 +1942,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,124,0,106,0,160,1,124,1,161,1,1,0,100,0,83, 0,114,109,0,0,0,41,2,114,24,1,0,0,114,186,0, 0,0,114,40,1,0,0,114,3,0,0,0,114,3,0,0, - 0,114,6,0,0,0,114,186,0,0,0,174,4,0,0,115, + 0,114,6,0,0,0,114,186,0,0,0,175,4,0,0,115, 2,0,0,0,0,1,122,21,95,78,97,109,101,115,112,97, 99,101,80,97,116,104,46,97,112,112,101,110,100,78,41,15, 114,125,0,0,0,114,124,0,0,0,114,126,0,0,0,114, @@ -1951,7 +1951,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,114,37,1,0,0,114,38,1,0,0,114,39,1,0, 0,114,42,1,0,0,114,186,0,0,0,114,3,0,0,0, 114,3,0,0,0,114,3,0,0,0,114,6,0,0,0,114, - 22,1,0,0,116,4,0,0,115,24,0,0,0,8,1,4, + 22,1,0,0,117,4,0,0,115,24,0,0,0,8,1,4, 6,8,6,8,10,8,4,8,13,8,3,8,3,8,3,8, 3,8,3,8,3,114,22,1,0,0,99,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,64, @@ -1967,7 +1967,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 124,3,131,3,124,0,95,1,100,0,83,0,114,109,0,0, 0,41,2,114,22,1,0,0,114,24,1,0,0,114,28,1, 0,0,114,3,0,0,0,114,3,0,0,0,114,6,0,0, - 0,114,209,0,0,0,180,4,0,0,115,2,0,0,0,0, + 0,114,209,0,0,0,181,4,0,0,115,2,0,0,0,0, 1,122,25,95,78,97,109,101,115,112,97,99,101,76,111,97, 100,101,114,46,95,95,105,110,105,116,95,95,99,2,0,0, 0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0, @@ -1984,21 +1984,21 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 101,115,112,97,99,101,41,62,41,2,114,61,0,0,0,114, 125,0,0,0,41,2,114,193,0,0,0,114,216,0,0,0, 114,3,0,0,0,114,3,0,0,0,114,6,0,0,0,218, - 11,109,111,100,117,108,101,95,114,101,112,114,183,4,0,0, + 11,109,111,100,117,108,101,95,114,101,112,114,184,4,0,0, 115,2,0,0,0,0,7,122,28,95,78,97,109,101,115,112, 97,99,101,76,111,97,100,101,114,46,109,111,100,117,108,101, 95,114,101,112,114,99,2,0,0,0,0,0,0,0,0,0, 0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,4, 0,0,0,100,1,83,0,41,2,78,84,114,3,0,0,0, 114,219,0,0,0,114,3,0,0,0,114,3,0,0,0,114, - 6,0,0,0,114,182,0,0,0,192,4,0,0,115,2,0, + 6,0,0,0,114,182,0,0,0,193,4,0,0,115,2,0, 0,0,0,1,122,27,95,78,97,109,101,115,112,97,99,101, 76,111,97,100,101,114,46,105,115,95,112,97,99,107,97,103, 101,99,2,0,0,0,0,0,0,0,0,0,0,0,2,0, 0,0,1,0,0,0,67,0,0,0,115,4,0,0,0,100, 1,83,0,41,2,78,114,39,0,0,0,114,3,0,0,0, 114,219,0,0,0,114,3,0,0,0,114,3,0,0,0,114, - 6,0,0,0,114,229,0,0,0,195,4,0,0,115,2,0, + 6,0,0,0,114,229,0,0,0,196,4,0,0,115,2,0, 0,0,0,1,122,27,95,78,97,109,101,115,112,97,99,101, 76,111,97,100,101,114,46,103,101,116,95,115,111,117,114,99, 101,99,2,0,0,0,0,0,0,0,0,0,0,0,2,0, @@ -2007,21 +2007,21 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 6,78,114,39,0,0,0,122,8,60,115,116,114,105,110,103, 62,114,215,0,0,0,84,41,1,114,231,0,0,0,41,1, 114,232,0,0,0,114,219,0,0,0,114,3,0,0,0,114, - 3,0,0,0,114,6,0,0,0,114,213,0,0,0,198,4, + 3,0,0,0,114,6,0,0,0,114,213,0,0,0,199,4, 0,0,115,2,0,0,0,0,1,122,25,95,78,97,109,101, 115,112,97,99,101,76,111,97,100,101,114,46,103,101,116,95, 99,111,100,101,99,2,0,0,0,0,0,0,0,0,0,0, 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, 0,0,100,1,83,0,114,210,0,0,0,114,3,0,0,0, 114,211,0,0,0,114,3,0,0,0,114,3,0,0,0,114, - 6,0,0,0,114,212,0,0,0,201,4,0,0,115,2,0, + 6,0,0,0,114,212,0,0,0,202,4,0,0,115,2,0, 0,0,0,1,122,30,95,78,97,109,101,115,112,97,99,101, 76,111,97,100,101,114,46,99,114,101,97,116,101,95,109,111, 100,117,108,101,99,2,0,0,0,0,0,0,0,0,0,0, 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0, 0,0,100,0,83,0,114,109,0,0,0,114,3,0,0,0, 114,253,0,0,0,114,3,0,0,0,114,3,0,0,0,114, - 6,0,0,0,114,217,0,0,0,204,4,0,0,115,2,0, + 6,0,0,0,114,217,0,0,0,205,4,0,0,115,2,0, 0,0,0,1,122,28,95,78,97,109,101,115,112,97,99,101, 76,111,97,100,101,114,46,101,120,101,99,95,109,111,100,117, 108,101,99,2,0,0,0,0,0,0,0,0,0,0,0,2, @@ -2039,7 +2039,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 97,116,104,32,123,33,114,125,41,4,114,134,0,0,0,114, 149,0,0,0,114,24,1,0,0,114,218,0,0,0,114,219, 0,0,0,114,3,0,0,0,114,3,0,0,0,114,6,0, - 0,0,114,220,0,0,0,207,4,0,0,115,8,0,0,0, + 0,0,114,220,0,0,0,208,4,0,0,115,8,0,0,0, 0,7,6,1,4,255,4,2,122,28,95,78,97,109,101,115, 112,97,99,101,76,111,97,100,101,114,46,108,111,97,100,95, 109,111,100,117,108,101,78,41,12,114,125,0,0,0,114,124, @@ -2047,7 +2047,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,114,44,1,0,0,114,182,0,0,0,114,229,0,0, 0,114,213,0,0,0,114,212,0,0,0,114,217,0,0,0, 114,220,0,0,0,114,3,0,0,0,114,3,0,0,0,114, - 3,0,0,0,114,6,0,0,0,114,43,1,0,0,179,4, + 3,0,0,0,114,6,0,0,0,114,43,1,0,0,180,4, 0,0,115,18,0,0,0,8,1,8,3,2,1,10,8,8, 3,8,3,8,3,8,3,8,3,114,43,1,0,0,99,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4, @@ -2084,7 +2084,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 99,97,99,104,101,218,5,105,116,101,109,115,114,128,0,0, 0,114,46,1,0,0,41,3,114,193,0,0,0,114,116,0, 0,0,218,6,102,105,110,100,101,114,114,3,0,0,0,114, - 3,0,0,0,114,6,0,0,0,114,46,1,0,0,225,4, + 3,0,0,0,114,6,0,0,0,114,46,1,0,0,226,4, 0,0,115,10,0,0,0,0,4,22,1,8,1,10,1,10, 1,122,28,80,97,116,104,70,105,110,100,101,114,46,105,110, 118,97,108,105,100,97,116,101,95,99,97,99,104,101,115,99, @@ -2105,7 +2105,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,41,3,114,193,0,0,0,114,43,0,0,0,90,4, 104,111,111,107,114,3,0,0,0,114,3,0,0,0,114,6, 0,0,0,218,11,95,112,97,116,104,95,104,111,111,107,115, - 235,4,0,0,115,16,0,0,0,0,3,16,1,12,1,10, + 236,4,0,0,115,16,0,0,0,0,3,16,1,12,1,10, 1,2,1,14,1,12,1,12,2,122,22,80,97,116,104,70, 105,110,100,101,114,46,95,112,97,116,104,95,104,111,111,107, 115,99,2,0,0,0,0,0,0,0,0,0,0,0,3,0, @@ -2135,7 +2135,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,114,111,114,114,52,1,0,0,41,3,114,193,0,0,0, 114,43,0,0,0,114,50,1,0,0,114,3,0,0,0,114, 3,0,0,0,114,6,0,0,0,218,20,95,112,97,116,104, - 95,105,109,112,111,114,116,101,114,95,99,97,99,104,101,248, + 95,105,109,112,111,114,116,101,114,95,99,97,99,104,101,249, 4,0,0,115,22,0,0,0,0,8,8,1,2,1,12,1, 12,3,8,1,2,1,14,1,12,1,10,1,16,1,122,31, 80,97,116,104,70,105,110,100,101,114,46,95,112,97,116,104, @@ -2153,7 +2153,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,0,114,139,0,0,0,114,50,1,0,0,114,140,0, 0,0,114,141,0,0,0,114,187,0,0,0,114,3,0,0, 0,114,3,0,0,0,114,6,0,0,0,218,16,95,108,101, - 103,97,99,121,95,103,101,116,95,115,112,101,99,14,5,0, + 103,97,99,121,95,103,101,116,95,115,112,101,99,15,5,0, 0,115,18,0,0,0,0,4,10,1,16,2,10,1,4,1, 8,1,12,1,12,1,6,1,122,27,80,97,116,104,70,105, 110,100,101,114,46,95,108,101,103,97,99,121,95,103,101,116, @@ -2185,7 +2185,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 97,116,104,90,5,101,110,116,114,121,114,50,1,0,0,114, 187,0,0,0,114,141,0,0,0,114,3,0,0,0,114,3, 0,0,0,114,6,0,0,0,218,9,95,103,101,116,95,115, - 112,101,99,29,5,0,0,115,40,0,0,0,0,5,4,1, + 112,101,99,30,5,0,0,115,40,0,0,0,0,5,4,1, 8,1,14,1,2,1,10,1,8,1,10,1,14,2,12,1, 8,1,2,1,10,1,8,1,6,1,8,1,8,5,12,2, 12,1,6,1,122,20,80,97,116,104,70,105,110,100,101,114, @@ -2212,7 +2212,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 1,0,0,41,6,114,193,0,0,0,114,139,0,0,0,114, 43,0,0,0,114,202,0,0,0,114,187,0,0,0,114,57, 1,0,0,114,3,0,0,0,114,3,0,0,0,114,6,0, - 0,0,114,203,0,0,0,61,5,0,0,115,26,0,0,0, + 0,0,114,203,0,0,0,62,5,0,0,115,26,0,0,0, 0,6,8,1,6,1,14,1,8,1,4,1,10,1,6,1, 4,3,6,1,16,1,4,2,6,2,122,20,80,97,116,104, 70,105,110,100,101,114,46,102,105,110,100,95,115,112,101,99, @@ -2232,13 +2232,13 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 95,115,112,101,99,40,41,32,105,110,115,116,101,97,100,46, 10,10,32,32,32,32,32,32,32,32,78,114,204,0,0,0, 114,205,0,0,0,114,3,0,0,0,114,3,0,0,0,114, - 6,0,0,0,114,206,0,0,0,85,5,0,0,115,8,0, + 6,0,0,0,114,206,0,0,0,86,5,0,0,115,8,0, 0,0,0,8,12,1,8,1,4,1,122,22,80,97,116,104, 70,105,110,100,101,114,46,102,105,110,100,95,109,111,100,117, 108,101,99,1,0,0,0,0,0,0,0,0,0,0,0,4, 0,0,0,4,0,0,0,79,0,0,0,115,28,0,0,0, 100,1,100,2,108,0,109,1,125,3,1,0,124,3,106,2, - 124,1,105,0,124,2,164,1,142,1,83,0,41,3,97,32, + 124,1,105,0,124,2,80,0,142,1,83,0,41,3,97,32, 1,0,0,10,32,32,32,32,32,32,32,32,70,105,110,100, 32,100,105,115,116,114,105,98,117,116,105,111,110,115,46,10, 10,32,32,32,32,32,32,32,32,82,101,116,117,114,110,32, @@ -2264,7 +2264,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 100,105,115,116,114,105,98,117,116,105,111,110,115,41,4,114, 193,0,0,0,114,119,0,0,0,114,120,0,0,0,114,59, 1,0,0,114,3,0,0,0,114,3,0,0,0,114,6,0, - 0,0,114,60,1,0,0,98,5,0,0,115,4,0,0,0, + 0,0,114,60,1,0,0,99,5,0,0,115,4,0,0,0, 0,10,12,1,122,29,80,97,116,104,70,105,110,100,101,114, 46,102,105,110,100,95,100,105,115,116,114,105,98,117,116,105, 111,110,115,41,1,78,41,2,78,78,41,1,78,41,13,114, @@ -2273,7 +2273,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 0,0,114,54,1,0,0,114,55,1,0,0,114,58,1,0, 0,114,203,0,0,0,114,206,0,0,0,114,60,1,0,0, 114,3,0,0,0,114,3,0,0,0,114,3,0,0,0,114, - 6,0,0,0,114,45,1,0,0,221,4,0,0,115,34,0, + 6,0,0,0,114,45,1,0,0,222,4,0,0,115,34,0, 0,0,8,2,4,2,2,1,10,9,2,1,10,12,2,1, 10,21,2,1,10,14,2,1,12,31,2,1,12,23,2,1, 12,12,2,1,114,45,1,0,0,99,0,0,0,0,0,0, @@ -2318,7 +2318,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 1,124,1,136,0,102,2,86,0,1,0,113,2,100,0,83, 0,114,109,0,0,0,114,3,0,0,0,114,16,1,0,0, 169,1,114,140,0,0,0,114,3,0,0,0,114,6,0,0, - 0,114,19,1,0,0,127,5,0,0,115,4,0,0,0,4, + 0,114,19,1,0,0,128,5,0,0,115,4,0,0,0,4, 0,2,0,122,38,70,105,108,101,70,105,110,100,101,114,46, 95,95,105,110,105,116,95,95,46,60,108,111,99,97,108,115, 62,46,60,103,101,110,101,120,112,114,62,114,70,0,0,0, @@ -2330,7 +2330,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 41,5,114,118,0,0,0,114,43,0,0,0,218,14,108,111, 97,100,101,114,95,100,101,116,97,105,108,115,90,7,108,111, 97,100,101,114,115,114,189,0,0,0,114,3,0,0,0,114, - 62,1,0,0,114,6,0,0,0,114,209,0,0,0,121,5, + 62,1,0,0,114,6,0,0,0,114,209,0,0,0,122,5, 0,0,115,16,0,0,0,0,4,4,1,12,1,26,1,6, 2,10,1,6,1,8,1,122,19,70,105,108,101,70,105,110, 100,101,114,46,95,95,105,110,105,116,95,95,99,1,0,0, @@ -2340,7 +2340,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 116,101,32,116,104,101,32,100,105,114,101,99,116,111,114,121, 32,109,116,105,109,101,46,114,104,0,0,0,78,41,1,114, 64,1,0,0,114,246,0,0,0,114,3,0,0,0,114,3, - 0,0,0,114,6,0,0,0,114,46,1,0,0,135,5,0, + 0,0,0,114,6,0,0,0,114,46,1,0,0,136,5,0, 0,115,2,0,0,0,0,2,122,28,70,105,108,101,70,105, 110,100,101,114,46,105,110,118,97,108,105,100,97,116,101,95, 99,97,99,104,101,115,99,2,0,0,0,0,0,0,0,0, @@ -2363,7 +2363,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 32,32,32,32,32,32,32,78,41,3,114,203,0,0,0,114, 140,0,0,0,114,178,0,0,0,41,3,114,118,0,0,0, 114,139,0,0,0,114,187,0,0,0,114,3,0,0,0,114, - 3,0,0,0,114,6,0,0,0,114,137,0,0,0,141,5, + 3,0,0,0,114,6,0,0,0,114,137,0,0,0,142,5, 0,0,115,8,0,0,0,0,7,10,1,8,1,8,1,122, 22,70,105,108,101,70,105,110,100,101,114,46,102,105,110,100, 95,108,111,97,100,101,114,99,6,0,0,0,0,0,0,0, @@ -2374,7 +2374,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,118,0,0,0,114,188,0,0,0,114,139,0,0,0,114, 43,0,0,0,90,4,115,109,115,108,114,202,0,0,0,114, 140,0,0,0,114,3,0,0,0,114,3,0,0,0,114,6, - 0,0,0,114,58,1,0,0,153,5,0,0,115,8,0,0, + 0,0,0,114,58,1,0,0,154,5,0,0,115,8,0,0, 0,0,1,10,1,8,1,2,255,122,20,70,105,108,101,70, 105,110,100,101,114,46,95,103,101,116,95,115,112,101,99,78, 99,3,0,0,0,0,0,0,0,0,0,0,0,14,0,0, @@ -2429,7 +2429,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 110,105,116,95,102,105,108,101,110,97,109,101,90,9,102,117, 108,108,95,112,97,116,104,114,187,0,0,0,114,3,0,0, 0,114,3,0,0,0,114,6,0,0,0,114,203,0,0,0, - 158,5,0,0,115,74,0,0,0,0,5,4,1,14,1,2, + 159,5,0,0,115,74,0,0,0,0,5,4,1,14,1,2, 1,24,1,12,1,10,1,10,1,8,1,6,2,6,1,6, 1,10,2,6,1,4,2,8,1,12,1,14,1,8,1,10, 1,8,1,26,4,8,2,14,1,16,1,16,1,12,1,8, @@ -2460,7 +2460,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 124,1,160,0,161,0,146,2,113,4,83,0,114,3,0,0, 0,41,1,114,105,0,0,0,41,2,114,31,0,0,0,90, 2,102,110,114,3,0,0,0,114,3,0,0,0,114,6,0, - 0,0,218,9,60,115,101,116,99,111,109,112,62,235,5,0, + 0,0,218,9,60,115,101,116,99,111,109,112,62,236,5,0, 0,115,4,0,0,0,6,0,2,0,122,41,70,105,108,101, 70,105,110,100,101,114,46,95,102,105,108,108,95,99,97,99, 104,101,46,60,108,111,99,97,108,115,62,46,60,115,101,116, @@ -2477,7 +2477,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 116,101,110,116,115,114,41,1,0,0,114,116,0,0,0,114, 29,1,0,0,114,17,1,0,0,90,8,110,101,119,95,110, 97,109,101,114,3,0,0,0,114,3,0,0,0,114,6,0, - 0,0,114,69,1,0,0,206,5,0,0,115,34,0,0,0, + 0,0,114,69,1,0,0,207,5,0,0,115,34,0,0,0, 0,2,6,1,2,1,22,1,18,3,10,3,12,1,12,7, 6,1,8,1,16,1,4,1,18,2,4,1,12,1,6,1, 12,1,122,22,70,105,108,101,70,105,110,100,101,114,46,95, @@ -2515,7 +2515,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 55,0,0,0,114,117,0,0,0,114,47,0,0,0,169,2, 114,193,0,0,0,114,68,1,0,0,114,3,0,0,0,114, 6,0,0,0,218,24,112,97,116,104,95,104,111,111,107,95, - 102,111,114,95,70,105,108,101,70,105,110,100,101,114,247,5, + 102,111,114,95,70,105,108,101,70,105,110,100,101,114,248,5, 0,0,115,6,0,0,0,0,2,8,1,12,1,122,54,70, 105,108,101,70,105,110,100,101,114,46,112,97,116,104,95,104, 111,111,107,46,60,108,111,99,97,108,115,62,46,112,97,116, @@ -2523,7 +2523,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 105,110,100,101,114,114,3,0,0,0,41,3,114,193,0,0, 0,114,68,1,0,0,114,75,1,0,0,114,3,0,0,0, 114,74,1,0,0,114,6,0,0,0,218,9,112,97,116,104, - 95,104,111,111,107,237,5,0,0,115,4,0,0,0,0,10, + 95,104,111,111,107,238,5,0,0,115,4,0,0,0,0,10, 14,6,122,20,70,105,108,101,70,105,110,100,101,114,46,112, 97,116,104,95,104,111,111,107,99,1,0,0,0,0,0,0, 0,0,0,0,0,1,0,0,0,3,0,0,0,67,0,0, @@ -2531,7 +2531,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 83,0,41,2,78,122,16,70,105,108,101,70,105,110,100,101, 114,40,123,33,114,125,41,41,2,114,61,0,0,0,114,43, 0,0,0,114,246,0,0,0,114,3,0,0,0,114,3,0, - 0,0,114,6,0,0,0,114,39,1,0,0,255,5,0,0, + 0,0,114,6,0,0,0,114,39,1,0,0,0,6,0,0, 115,2,0,0,0,0,1,122,19,70,105,108,101,70,105,110, 100,101,114,46,95,95,114,101,112,114,95,95,41,1,78,41, 15,114,125,0,0,0,114,124,0,0,0,114,126,0,0,0, @@ -2540,7 +2540,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 1,0,0,114,203,0,0,0,114,69,1,0,0,114,207,0, 0,0,114,76,1,0,0,114,39,1,0,0,114,3,0,0, 0,114,3,0,0,0,114,3,0,0,0,114,6,0,0,0, - 114,61,1,0,0,112,5,0,0,115,22,0,0,0,8,2, + 114,61,1,0,0,113,5,0,0,115,22,0,0,0,8,2, 4,7,8,14,8,4,4,2,8,12,8,5,10,48,8,31, 2,1,10,17,114,61,1,0,0,99,4,0,0,0,0,0, 0,0,0,0,0,0,6,0,0,0,8,0,0,0,67,0, @@ -2563,7 +2563,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 116,104,110,97,109,101,90,9,99,112,97,116,104,110,97,109, 101,114,140,0,0,0,114,187,0,0,0,114,3,0,0,0, 114,3,0,0,0,114,6,0,0,0,218,14,95,102,105,120, - 95,117,112,95,109,111,100,117,108,101,5,6,0,0,115,34, + 95,117,112,95,109,111,100,117,108,101,6,6,0,0,115,34, 0,0,0,0,2,10,1,10,1,4,1,4,1,8,1,8, 1,12,2,10,1,4,1,14,1,2,1,8,1,8,1,8, 1,12,1,12,2,114,81,1,0,0,99,0,0,0,0,0, @@ -2583,7 +2583,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 114,88,0,0,0,41,3,90,10,101,120,116,101,110,115,105, 111,110,115,90,6,115,111,117,114,99,101,90,8,98,121,116, 101,99,111,100,101,114,3,0,0,0,114,3,0,0,0,114, - 6,0,0,0,114,184,0,0,0,28,6,0,0,115,8,0, + 6,0,0,0,114,184,0,0,0,29,6,0,0,115,8,0, 0,0,0,5,12,1,8,1,8,1,114,184,0,0,0,99, 1,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0, 9,0,0,0,67,0,0,0,115,176,1,0,0,124,0,97, @@ -2636,7 +2636,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 83,0,41,2,114,38,0,0,0,78,41,1,114,22,0,0, 0,41,2,114,31,0,0,0,114,94,0,0,0,114,3,0, 0,0,114,3,0,0,0,114,6,0,0,0,114,19,1,0, - 0,64,6,0,0,115,4,0,0,0,4,0,2,0,122,25, + 0,65,6,0,0,115,4,0,0,0,4,0,2,0,122,25, 95,115,101,116,117,112,46,60,108,111,99,97,108,115,62,46, 60,103,101,110,101,120,112,114,62,114,72,0,0,0,122,30, 105,109,112,111,114,116,108,105,98,32,114,101,113,117,105,114, @@ -2648,7 +2648,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 1,155,0,157,2,146,2,113,4,83,0,41,1,114,73,0, 0,0,114,3,0,0,0,41,2,114,31,0,0,0,218,1, 115,114,3,0,0,0,114,3,0,0,0,114,6,0,0,0, - 114,70,1,0,0,80,6,0,0,115,4,0,0,0,6,0, + 114,70,1,0,0,81,6,0,0,115,4,0,0,0,6,0, 2,0,122,25,95,115,101,116,117,112,46,60,108,111,99,97, 108,115,62,46,60,115,101,116,99,111,109,112,62,90,7,95, 116,104,114,101,97,100,90,8,95,119,101,97,107,114,101,102, @@ -2671,7 +2671,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 97,100,95,109,111,100,117,108,101,90,14,119,101,97,107,114, 101,102,95,109,111,100,117,108,101,90,13,119,105,110,114,101, 103,95,109,111,100,117,108,101,114,3,0,0,0,114,3,0, - 0,0,114,6,0,0,0,218,6,95,115,101,116,117,112,39, + 0,0,114,6,0,0,0,218,6,95,115,101,116,117,112,40, 6,0,0,115,78,0,0,0,0,8,4,1,6,1,6,3, 10,1,8,1,10,1,12,2,10,1,14,3,22,1,12,2, 22,1,8,1,10,1,10,1,6,2,2,1,10,1,10,1, @@ -2692,7 +2692,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 1,0,0,41,2,114,88,1,0,0,90,17,115,117,112,112, 111,114,116,101,100,95,108,111,97,100,101,114,115,114,3,0, 0,0,114,3,0,0,0,114,6,0,0,0,218,8,95,105, - 110,115,116,97,108,108,104,6,0,0,115,8,0,0,0,0, + 110,115,116,97,108,108,105,6,0,0,115,8,0,0,0,0, 2,8,1,6,1,20,1,114,91,1,0,0,41,1,114,59, 0,0,0,41,1,78,41,3,78,78,78,41,2,114,72,0, 0,0,114,72,0,0,0,41,1,84,41,1,78,41,1,78, @@ -2726,7 +2726,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = { 101,62,1,0,0,0,115,126,0,0,0,4,22,4,1,4, 1,2,1,2,255,4,4,8,17,8,5,8,5,8,6,8, 6,8,12,8,10,8,9,8,5,8,7,8,9,10,22,10, - 127,0,20,16,1,12,2,4,1,4,2,6,2,6,2,8, + 127,0,21,16,1,12,2,4,1,4,2,6,2,6,2,8, 2,16,71,8,40,8,19,8,12,8,12,8,28,8,17,8, 33,8,28,8,24,10,13,10,10,10,11,8,14,6,3,4, 1,2,255,12,68,14,64,14,29,16,127,0,17,14,72,18, diff --git a/Python/opcode_targets.h b/Python/opcode_targets.h index 538fdbe3e0b5ae6..02396bf58115d88 100644 --- a/Python/opcode_targets.h +++ b/Python/opcode_targets.h @@ -79,8 +79,8 @@ static void *opcode_targets[256] = { &&TARGET_INPLACE_AND, &&TARGET_INPLACE_XOR, &&TARGET_INPLACE_OR, - &&_unknown_opcode, - &&_unknown_opcode, + &&TARGET_DICT_MERGE, + &&TARGET_DICT_UPDATE, &&TARGET_LIST_TO_TUPLE, &&TARGET_RETURN_VALUE, &&TARGET_IMPORT_STAR, @@ -163,8 +163,8 @@ static void *opcode_targets[256] = { &&TARGET_CALL_METHOD, &&TARGET_LIST_EXTEND, &&TARGET_SET_UPDATE, - &&TARGET_DICT_MERGE, - &&TARGET_DICT_UPDATE, + &&_unknown_opcode, + &&_unknown_opcode, &&_unknown_opcode, &&_unknown_opcode, &&_unknown_opcode, From c977313aa5d005bae83ee6986113197d30797465 Mon Sep 17 00:00:00 2001 From: Brandt Bucher Date: Tue, 28 Jan 2020 19:14:31 -0800 Subject: [PATCH 4/4] Add a NEWS entry. --- .../Core and Builtins/2020-01-28-19-12-57.bpo-39320.sk1RSd.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Core and Builtins/2020-01-28-19-12-57.bpo-39320.sk1RSd.rst diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-01-28-19-12-57.bpo-39320.sk1RSd.rst b/Misc/NEWS.d/next/Core and Builtins/2020-01-28-19-12-57.bpo-39320.sk1RSd.rst new file mode 100644 index 000000000000000..6e940f723a138c8 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-01-28-19-12-57.bpo-39320.sk1RSd.rst @@ -0,0 +1 @@ +Don't use an oparg for ``DICT_MERGE`` and ``DICT_UPDATE`` opcodes.