We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77c9681 commit 4177e7cCopy full SHA for 4177e7c
Misc/NEWS
@@ -256,6 +256,12 @@ Windows
256
- Issue #26065: Excludes venv from library when generating embeddable
257
distro.
258
259
+Tools/Demos
260
+-----------
261
+
262
+- Issue #26316: Fix variable name typo in Argument Clinic.
263
264
265
What's New in Python 3.5.1 final?
266
=================================
267
Tools/clinic/clinic.py
@@ -199,7 +199,7 @@ def linear_format(s, **kwargs):
199
add('\n')
200
continue
201
202
- name, curl, trailing = trailing.partition('}')
+ name, curly, trailing = trailing.partition('}')
203
if not curly or name not in kwargs:
204
add(line)
205
0 commit comments