Commit 1967c120 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Suppress unsafe *Cookie class warnings

parent 004b43f6
......@@ -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 = [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment