gh-130574: renumber RESUME opcode from 149 to 128 (GH-130685)

This commit is contained in:
Tomasz Pytel 2025-03-06 03:59:36 -05:00 committed by GitHub
parent e4a60248b0
commit aeb2327386
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 243 additions and 241 deletions

View file

@ -22,7 +22,7 @@ ROOT = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
verbose = False
# This must be kept in sync with Tools/cases_generator/analyzer.py
RESUME = 149
RESUME = 128
def isprintable(b: bytes) -> bool:
return all(0x20 <= c < 0x7f for c in b)