changeset: 100238:aec2eae8933e branch: 3.5 parent: 100236:c2a2685ab89b user: Martin Panter date: Sun Feb 14 03:23:13 2016 +0000 files: Misc/NEWS Tools/clinic/clinic.py description: Issue #26316: Fix variable name typo in Argument Clinic diff -r c2a2685ab89b -r aec2eae8933e Misc/NEWS --- a/Misc/NEWS Sat Feb 13 17:59:05 2016 -0500 +++ b/Misc/NEWS Sun Feb 14 03:23:13 2016 +0000 @@ -256,6 +256,12 @@ - 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? ================================= diff -r c2a2685ab89b -r aec2eae8933e Tools/clinic/clinic.py --- a/Tools/clinic/clinic.py Sat Feb 13 17:59:05 2016 -0500 +++ b/Tools/clinic/clinic.py Sun Feb 14 03:23:13 2016 +0000 @@ -199,7 +199,7 @@ 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')