Skip to content

Commit

Permalink
Issue python#26316: Fix variable name typo in Argument Clinic
Browse files Browse the repository at this point in the history
  • Loading branch information
vadmium committed Feb 14, 2016
1 parent 77c9681 commit 4177e7c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Misc/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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?
=================================

Expand Down
2 changes: 1 addition & 1 deletion Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 4177e7c

Please sign in to comment.