summaryrefslogtreecommitdiff
path: root/pylint/checkers/stdlib.py
diff options
context:
space:
mode:
authorChristopher Zurcher <zurcher@users.noreply.github.com>2017-06-20 11:34:07 -0700
committerRoy Williams <roy.williams.iii@gmail.com>2017-06-20 11:34:06 -0700
commit45597361e41c94261e6fed17766c1fdf57c570a4 (patch)
treefecddc32ddbeca197b793fe35cb5adaf809d13c5 /pylint/checkers/stdlib.py
parent2e820672609c489458dc2cf39d811e8c10255fe4 (diff)
downloadpylint-git-45597361e41c94261e6fed17766c1fdf57c570a4.tar.gz
Un-deprecate inspect.getfullargspec (#1541)
The inspect.getfullargspec() command was un-deprecated in Python 3.6 so it should be removed from the deprecated list. https://docs.python.org/3/library/inspect.html#inspect.getfullargspec
Diffstat (limited to 'pylint/checkers/stdlib.py')
-rw-r--r--pylint/checkers/stdlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/stdlib.py b/pylint/checkers/stdlib.py
index 51c886b44..715991eb7 100644
--- a/pylint/checkers/stdlib.py
+++ b/pylint/checkers/stdlib.py
@@ -165,7 +165,7 @@ class StdlibChecker(BaseChecker):
],
(3, 5, 0): [
'fractions.gcd',
- 'inspect.getfullargspec', 'inspect.getargvalues',
+ 'inspect.getargvalues',
'inspect.formatargspec', 'inspect.formatargvalues',
'inspect.getcallargs',
'platform.linux_distribution', 'platform.dist',