Merge pull request #18117 from github/tausbn/python-fix-match-literal-pruning

Python: Add change note for CFG pruning fix
This commit is contained in:
yoff
2024-11-28 11:40:21 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ from io import BytesIO
#Semantic version of extractor.
#Update this if any changes are made
VERSION = "7.1.1"
VERSION = "7.1.2"
PY_EXTENSIONS = ".py", ".pyw"

View File

@@ -0,0 +1,5 @@
---
category: fix
---
- Fixed a problem with the control-flow graph construction, where writing `case True:` or `case False:` would cause parts of the graph to be pruned by mistake.