summaryrefslogtreecommitdiff
path: root/dev-python/tornado/files/tornado-6.3.2-ignore-deprecationwarning.patch
blob: 7a6139173faf678d0765c3c4b5a1f359d8af17cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
https://src.fedoraproject.org/rpms/python-tornado/raw/rawhide/f/Do-not-turn-DeprecationWarning-into-Exception.patch
--- a/tornado/test/runtests.py
+++ b/tornado/test/runtests.py
@@ -126,7 +126,6 @@
     # Tornado generally shouldn't use anything deprecated, but some of
     # our dependencies do (last match wins).
     warnings.filterwarnings("ignore", category=DeprecationWarning)
-    warnings.filterwarnings("error", category=DeprecationWarning, module=r"tornado\..*")
     warnings.filterwarnings("ignore", category=PendingDeprecationWarning)
     warnings.filterwarnings(
         "error", category=PendingDeprecationWarning, module=r"tornado\..*"