Commit 4177e7c3 authored by Martin Panter's avatar Martin Panter

Issue #26316: Fix variable name typo in Argument Clinic

parent 77c96813
...@@ -256,6 +256,12 @@ Windows ...@@ -256,6 +256,12 @@ Windows
- Issue #26065: Excludes venv from library when generating embeddable - Issue #26065: Excludes venv from library when generating embeddable
distro. distro.
Tools/Demos
-----------
- Issue #26316: Fix variable name typo in Argument Clinic.
What's New in Python 3.5.1 final? What's New in Python 3.5.1 final?
================================= =================================
......
...@@ -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