From: Mike Bayer Date: Fri, 7 Jun 2019 20:04:22 +0000 (-0400) Subject: Add "full" to the getargspec warning skip X-Git-Tag: rel_1_4_0b1~843 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4518cb0d6c39af15c958d08bdecd0d550c88de87;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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 --- diff --git a/lib/sqlalchemy/testing/warnings.py b/lib/sqlalchemy/testing/warnings.py index 2692450adb..829f855863 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" )