summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSorin Sbarnea <ssbarnea@redhat.com>2020-12-14 09:35:14 +0000
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-12-14 12:48:30 +0100
commit1736d3a9f0768f62b3d07f2d93a010eb92242633 (patch)
tree7529e1aee0b84060536ccee768ff506d9105bfb4
parentfb6fa45799be507a876841c136c1b5e614b1fea0 (diff)
downloadpylint-git-1736d3a9f0768f62b3d07f2d93a010eb92242633.tar.gz
Fix regression about getfullargspec deprecation
Fixes regression introduced by https://github.com/PyCQA/pylint/commit/9d4f2c082e4f17fb5165deb0c9e4a0fd329d5cbd which incorrectly added getfullargspec as deprecated, which in fact was never deprecated, not even in the latest 3.9.0
-rw-r--r--CONTRIBUTORS.txt2
-rw-r--r--ChangeLog1
-rw-r--r--pylint/checkers/stdlib.py1
3 files changed, 3 insertions, 1 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 2c0e6aa99..e0e3d6857 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -431,3 +431,5 @@ contributors:
* Julien Palard: contributor
* Raphael Gaschignard: contributor
+
+* Sorin Sbarnea: contributor
diff --git a/ChangeLog b/ChangeLog
index 7920b8031..f47d68b0c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -81,6 +81,7 @@ Release date: TBA
* Improve the performance of the line length check.
+* Removed incorrect deprecation of ``inspect.getfullargspec``
What's New in Pylint 2.6.0?
===========================
diff --git a/pylint/checkers/stdlib.py b/pylint/checkers/stdlib.py
index a0d13524c..270623f09 100644
--- a/pylint/checkers/stdlib.py
+++ b/pylint/checkers/stdlib.py
@@ -245,7 +245,6 @@ class StdlibChecker(BaseChecker):
"fractions.gcd",
"inspect.formatargspec",
"inspect.getcallargs",
- "inspect.getfullargspec",
"platform.linux_distribution",
"platform.dist",
},