Kaydet (Commit) 8a5e69ca authored tarafından Martin Panter's avatar Martin Panter

Issue #26316: Merge Arg Clinic fix from 3.5

...@@ -748,6 +748,8 @@ Windows ...@@ -748,6 +748,8 @@ Windows
Tools/Demos Tools/Demos
----------- -----------
- Issue #26316: Fix variable name typo in Argument Clinic.
- Issue #25440: Fix output of python-config --extension-suffix. - Issue #25440: Fix output of python-config --extension-suffix.
- Issue #25154: The pyvenv script has been deprecated in favour of - Issue #25154: The pyvenv script has been deprecated in favour of
......
...@@ -199,7 +199,7 @@ def linear_format(s, **kwargs): ...@@ -199,7 +199,7 @@ def linear_format(s, **kwargs):
add('\n') add('\n')
continue continue
name, curl, trailing = trailing.partition('}') name, curly, trailing = trailing.partition('}')
if not curly or name not in kwargs: if not curly or name not in kwargs:
add(line) add(line)
add('\n') add('\n')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment