Commit a0bdc059 authored by Neal Norwitz's avatar Neal Norwitz

Get rid of deprecation warning when testing commands.getstatus()

parent 4af5c4d1
...@@ -4,6 +4,10 @@ ...@@ -4,6 +4,10 @@
''' '''
import unittest import unittest
import os, tempfile, re import os, tempfile, re
import warnings
warnings.filterwarnings('ignore', r".*commands.getstatus.. is deprecated",
DeprecationWarning)
from test.test_support import TestSkipped, run_unittest, reap_children from test.test_support import TestSkipped, run_unittest, reap_children
from commands import * from commands import *
......
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