diff options
author | Guido van Rossum <guido@python.org> | 2001-09-04 15:18:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-09-04 15:18:54 (GMT) |
commit | 81fc7783eda271d0d05cf97fca57244094ff103b (patch) | |
tree | 80841923549d500f4fb9016d43938f23389f0d36 | |
parent | c20a698932d61ea825491781186caa77eb6c0e5e (diff) | |
download | cpython-81fc7783eda271d0d05cf97fca57244094ff103b.zip cpython-81fc7783eda271d0d05cf97fca57244094ff103b.tar.gz cpython-81fc7783eda271d0d05cf97fca57244094ff103b.tar.bz2 |
Suppress the warning about regex here.
-rwxr-xr-x | Lib/reconvert.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/reconvert.py b/Lib/reconvert.py index 59708da..ab6d040 100755 --- a/Lib/reconvert.py +++ b/Lib/reconvert.py @@ -60,6 +60,10 @@ XXX To be done... """ +import warnings +warnings.filterwarnings("ignore", ".* regex .*", DeprecationWarning, __name__, + append=1) + import regex from regex_syntax import * # RE_* |