mirror of
https://github.com/python/cpython.git
synced 2025-01-25 02:24:25 +08:00
Issue #26316: Fix variable name typo in Argument Clinic
This commit is contained in:
parent
77c96813ab
commit
4177e7c38e
@ -256,6 +256,12 @@ Windows
|
||||
- Issue #26065: Excludes venv from library when generating embeddable
|
||||
distro.
|
||||
|
||||
Tools/Demos
|
||||
-----------
|
||||
|
||||
- Issue #26316: Fix variable name typo in Argument Clinic.
|
||||
|
||||
|
||||
What's New in Python 3.5.1 final?
|
||||
=================================
|
||||
|
||||
|
@ -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…
Reference in New Issue
Block a user