mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
Issue #26316: Merge Arg Clinic fix from 3.5
This commit is contained in:
commit
8a5e69ca8c
2 changed files with 3 additions and 1 deletions
|
|
@ -748,6 +748,8 @@ Windows
|
|||
Tools/Demos
|
||||
-----------
|
||||
|
||||
- Issue #26316: Fix variable name typo in Argument Clinic.
|
||||
|
||||
- Issue #25440: Fix output of python-config --extension-suffix.
|
||||
|
||||
- Issue #25154: The pyvenv script has been deprecated in favour of
|
||||
|
|
|
|||
|
|
@ -199,7 +199,7 @@ def linear_format(s, **kwargs):
|
|||
add('\n')
|
||||
continue
|
||||
|
||||
name, curl, trailing = trailing.partition('}')
|
||||
name, curly, trailing = trailing.partition('}')
|
||||
if not curly or name not in kwargs:
|
||||
add(line)
|
||||
add('\n')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue