You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Doc/tutorial/controlflow.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -879,7 +879,7 @@ will always bind to the first parameter. For example::
879
879
TypeError: foo() got multiple values for argument 'name'
880
880
>>>
881
881
882
-
But using ``/`` (positionalonly arguments), it is possible since it allows ``name`` as a positional argument and ``'name'`` as a key in the keyword arguments::
882
+
But using ``/`` (positional-only parameters), it is possible since it allows ``name`` as a positional argument and ``'name'`` as a key in the keyword arguments::
0 commit comments