diff options
author | Bryce Guinta <bryce.paul.guinta@gmail.com> | 2018-07-31 14:32:19 -0600 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-08-01 08:40:54 +0200 |
commit | 4ae1ef66cf62781fd3c1ce7b4cc35fb1e1cd393e (patch) | |
tree | 5d3ab022d624b2a827ad0821db53e9edd8beec72 /doc | |
parent | 13330bccd97cac5905ff414805b69b279920a62e (diff) | |
download | pylint-git-4ae1ef66cf62781fd3c1ce7b4cc35fb1e1cd393e.tar.gz |
Escape the star in '*args' for rst
Diffstat (limited to 'doc')
-rw-r--r-- | doc/whatsnew/1.8.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/whatsnew/1.8.rst b/doc/whatsnew/1.8.rst index aab1104a2..884d16404 100644 --- a/doc/whatsnew/1.8.rst +++ b/doc/whatsnew/1.8.rst @@ -40,7 +40,7 @@ New checkers * A new check was added, ``keyword-arg-before-vararg``. This warning message is emitted when a function is defined with a keyword - argument appearing before variable-length positional arguments (*args). + argument appearing before variable-length positional arguments (\*args). This may lead to args list getting modified if keyword argument's value is not provided in the function call assuming it will take default value provided in the definition. |