]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Add "full" to the getargspec warning skip
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 7 Jun 2019 20:04:22 +0000 (16:04 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 7 Jun 2019 20:04:22 +0000 (16:04 -0400)
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

index 2692450adb7b71781adabf48202001f5f4920617..829f855863e9c3724ed430d386ebf0486c098571 100644 (file)
@@ -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"
     )