diff --git a/Lib/compiler/consts.py b/Lib/compiler/consts.py index 3b256c16f4b..ae3d18d35dc 100644 --- a/Lib/compiler/consts.py +++ b/Lib/compiler/consts.py @@ -7,3 +7,8 @@ OP_DELETE = 'OP_DELETE' OP_APPLY = 'OP_APPLY' +SC_LOCAL = 1 +SC_GLOBAL = 2 +SC_FREE = 3 +SC_CELL = 4 +SC_UNKNOWN = 5 diff --git a/Tools/compiler/compiler/consts.py b/Tools/compiler/compiler/consts.py index 3b256c16f4b..ae3d18d35dc 100644 --- a/Tools/compiler/compiler/consts.py +++ b/Tools/compiler/compiler/consts.py @@ -7,3 +7,8 @@ OP_DELETE = 'OP_DELETE' OP_APPLY = 'OP_APPLY' +SC_LOCAL = 1 +SC_GLOBAL = 2 +SC_FREE = 3 +SC_CELL = 4 +SC_UNKNOWN = 5