cpython icon indicating copy to clipboard operation
cpython copied to clipboard

gh-136073: Fix expandvars() in Tools/freeze/checkextensions.py

Open serhiy-storchaka opened this issue 6 months ago • 0 comments

  • Fix potential infinite recursion and/or memory consumption.
  • Fix a bug when reference can cross boundaries of substitutions, e.g. expandvars('$a)', {'a': '$(b', 'b': 'c'}).
  • Fix potential quadratic complexity.
  • Issue: gh-136073

serhiy-storchaka avatar Jun 29 '25 07:06 serhiy-storchaka