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
<h3id="Extra:-forcing-keyword-only-argument-usage-with-`*`"><fontcolor="green">Extra: forcing keyword only argument usage with `*`</font><aclass="anchor-link" href="#Extra:-forcing-keyword-only-argument-usage-with-`*`">¶</a></h3>
12629
+
<h4id="Extra:-keyword-only-arguments-after-`*`"><fontcolor="green">Extra: keyword only arguments after `*`</font><aclass="anchor-link" href="#Extra:-keyword-only-arguments-after-`*`">¶</a></h4><p>This might be useful for example if the signature of the function is likely to change in the future. For example, if there's even a slight chance that one of the arguments may be dropped during the future development, consider using <code>*</code>.</p>
Copy file name to clipboardExpand all lines: notebooks/intermediate/idiomatic_misc1.ipynb
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -455,7 +455,8 @@
455
455
"cell_type": "markdown",
456
456
"metadata": {},
457
457
"source": [
458
-
"### <font color='green'>Extra: forcing keyword only argument usage with `*`</font>"
458
+
"#### <font color='green'>Extra: keyword only arguments after `*`</font>\n",
459
+
"This might be useful for example if the signature of the function is likely to change in the future. For example, if there's even a slight chance that one of the arguments may be dropped during the future development, consider using `*`."
0 commit comments