Suppress unsafe *Cookie class warnings
This commit is contained in:
parent
7877a76107
commit
4464432d8c
|
@ -3,6 +3,11 @@
|
|||
from test.test_support import verify, verbose, run_doctest
|
||||
import Cookie
|
||||
|
||||
import warnings
|
||||
warnings.filterwarnings("ignore",
|
||||
".* class is insecure.*",
|
||||
DeprecationWarning)
|
||||
|
||||
# Currently this only tests SimpleCookie
|
||||
|
||||
cases = [
|
||||
|
|
Loading…
Reference in New Issue