We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daec426 commit 65d7ff6Copy full SHA for 65d7ff6
Lib/test/test_parser.py
@@ -1,5 +1,9 @@
1
import copy
2
-import parser
+import warnings
3
+with warnings.catch_warnings():
4
+ warnings.filterwarnings('ignore', 'The parser module is deprecated',
5
+ DeprecationWarning)
6
+ import parser
7
import pickle
8
import unittest
9
import operator
0 commit comments