summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2019-08-25 09:44:09 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2019-08-25 09:44:09 (GMT)
commitce6a070414ed1e1374d1e6212bfbff61b6d5d755 (patch)
tree55f9d0c54b98ad3c95e78a235668f6dbc314087b /Include
parent8371799e300475c8f9f967e900816218d3500e5d (diff)
downloadcpython-ce6a070414ed1e1374d1e6212bfbff61b6d5d755.zip
cpython-ce6a070414ed1e1374d1e6212bfbff61b6d5d755.tar.gz
cpython-ce6a070414ed1e1374d1e6212bfbff61b6d5d755.tar.bz2
bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073)
Fix assert statement misbehavior if AssertionError is shadowed.
Diffstat (limited to 'Include')
-rw-r--r--Include/opcode.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/opcode.h b/Include/opcode.h
index 2a29e97..95d5601 100644
--- a/Include/opcode.h
+++ b/Include/opcode.h
@@ -53,6 +53,7 @@ extern "C" {
#define LOAD_BUILD_CLASS 71
#define YIELD_FROM 72
#define GET_AWAITABLE 73
+#define LOAD_ASSERTION_ERROR 74
#define INPLACE_LSHIFT 75
#define INPLACE_RSHIFT 76
#define INPLACE_AND 77