summaryrefslogtreecommitdiff
path: root/tests/stress/bytecode_limit.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stress/bytecode_limit.py')
-rw-r--r--tests/stress/bytecode_limit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stress/bytecode_limit.py b/tests/stress/bytecode_limit.py
index 8cca413cf..ad090637f 100644
--- a/tests/stress/bytecode_limit.py
+++ b/tests/stress/bytecode_limit.py
@@ -3,7 +3,7 @@
body = " with f()()() as a:\n try:\n f()()()\n except Exception:\n pass\n"
# Test overflow of jump offset.
-for n in (430, 431, 432, 433):
+for n in (433, 432, 431, 430):
try:
exec("cond = 0\nif cond:\n" + body * n + "else:\n print('cond false')\n")
except MemoryError: