diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-06-07 16:04:22 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-06-07 16:04:22 -0400 |
commit | 4518cb0d6c39af15c958d08bdecd0d550c88de87 (patch) | |
tree | dc1b7672c680966077f55a67b85e389c9764c08c /lib/sqlalchemy/testing/warnings.py | |
parent | 4bd3cf69b2a7f5b1977e7be2b8588fd5d3424d11 (diff) | |
download | sqlalchemy-4518cb0d6c39af15c958d08bdecd0d550c88de87.tar.gz |
Add "full" to the getargspec warning skip
Even though getfullargspec() is no longer deprecated in python3.8
as of b1, we aren't using it anymore so block any future warnings
from interfering with py.test or similar.
Change-Id: Ib96838ce8169e989e1c8ad3a4819b4ebd3ffdc39
Diffstat (limited to 'lib/sqlalchemy/testing/warnings.py')
-rw-r--r-- | lib/sqlalchemy/testing/warnings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/warnings.py b/lib/sqlalchemy/testing/warnings.py index 2692450ad..829f85586 100644 --- a/lib/sqlalchemy/testing/warnings.py +++ b/lib/sqlalchemy/testing/warnings.py @@ -28,7 +28,7 @@ def setup_filters(): "ignore", category=DeprecationWarning, message=".*StopIteration" ) warnings.filterwarnings( - "ignore", category=DeprecationWarning, message=".*inspect.getargspec" + "ignore", category=DeprecationWarning, message=".*inspect.get.*argspec" ) |