commit | 8ee524343445f7ac1c60df812deff17a92757c06 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Aug 06 17:14:04 2002 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Aug 06 17:14:04 2002 +0000 |
tree | fc97584832519aed4994015ac2d0c3f1e1555d58 | |
parent | 97c5fccd773ad509f8fcf6be3708d90c4402772b [diff] [blame] |
Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py.
diff --git a/Lib/test/test_xreadline.py b/Lib/test/test_xreadline.py index db9eb6b..0ba4adc 100644 --- a/Lib/test/test_xreadline.py +++ b/Lib/test/test_xreadline.py
@@ -1,5 +1,8 @@ from test.test_support import verbose +import warnings +warnings.filterwarnings('ignore', "xreadlines", DeprecationWarning) + class XReader: def __init__(self): self.count = 5