From 4518cb0d6c39af15c958d08bdecd0d550c88de87 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 7 Jun 2019 16:04:22 -0400 Subject: [PATCH] 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 --- lib/sqlalchemy/testing/warnings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ) -- 2.47.2