diff options
-rw-r--r-- | Lib/test/test_rotor.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_rotor.py b/Lib/test/test_rotor.py index 28c5af5..eeec55a 100644 --- a/Lib/test/test_rotor.py +++ b/Lib/test/test_rotor.py @@ -1,3 +1,9 @@ +import warnings + +warnings.filterwarnings("ignore", + category=DeprecationWarning, + message='.*is deprecated', module=__name__) + import rotor r = rotor.newrotor("you'll never guess this") |