Remove spurious backticks.

This commit is contained in:
Guido van Rossum 2013-07-13 18:57:50 -07:00
parent 40e6f825cd
commit df6c195b0c
1 changed files with 2 additions and 2 deletions

View File

@ -150,8 +150,8 @@ If the restrictions are kept, a function call will look like this::
If they are removed completely, a function call will look like this::
function(
argument or keyword_argument or `*`args or **kwargs,
argument or keyword_argument or `*`args or **kwargs,
argument or keyword_argument or *args or **kwargs,
argument or keyword_argument or *args or **kwargs,
...
)