From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 8 Mar 2022 04:35:54 +0000 (-0800) Subject: docs: Don't use code formatting for emphasis (GH-30519) X-Git-Tag: v3.9.11~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=24ebaf6323d6775e582e99874b08b6c520fae484;p=thirdparty%2FPython%2Fcpython.git docs: Don't use code formatting for emphasis (GH-30519) (cherry picked from commit badb637c8ce91625122d5f4d71276bfe1a8ed5e9) Co-authored-by: William Andrea --- diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 08202f0344ea..289d44239822 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -710,7 +710,7 @@ zero or more normal arguments may occur. :: file.write(separator.join(args)) -Normally, these ``variadic`` arguments will be last in the list of formal +Normally, these *variadic* arguments will be last in the list of formal parameters, because they scoop up all remaining input arguments that are passed to the function. Any formal parameters which occur after the ``*args`` parameter are 'keyword-only' arguments, meaning that they can only be used as