Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e48b38 + 4177e7c commit 8a5e69cCopy full SHA for 8a5e69c
2 files changed
Misc/NEWS
@@ -748,6 +748,8 @@ Windows
748
Tools/Demos
749
-----------
750
751
+- Issue #26316: Fix variable name typo in Argument Clinic.
752
+
753
- Issue #25440: Fix output of python-config --extension-suffix.
754
755
- Issue #25154: The pyvenv script has been deprecated in favour of
Tools/clinic/clinic.py
@@ -199,7 +199,7 @@ def linear_format(s, **kwargs):
199
add('\n')
200
continue
201
202
- name, curl, trailing = trailing.partition('}')
+ name, curly, trailing = trailing.partition('}')
203
if not curly or name not in kwargs:
204
add(line)
205
0 commit comments