diff options
author | Sorin Sbarnea <ssbarnea@redhat.com> | 2020-12-14 09:35:14 +0000 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-12-14 12:48:30 +0100 |
commit | 1736d3a9f0768f62b3d07f2d93a010eb92242633 (patch) | |
tree | 7529e1aee0b84060536ccee768ff506d9105bfb4 | |
parent | fb6fa45799be507a876841c136c1b5e614b1fea0 (diff) | |
download | pylint-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.txt | 2 | ||||
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | pylint/checkers/stdlib.py | 1 |
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 @@ -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", }, |