summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_xreadline.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-31 13:29:03 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-08-31 13:29:03 (GMT)
commit163f8000951ef3ef779dfd0001184dc247ac5f45 (patch)
treeabecdd40845cd3f499e097e3ecad2f42e9a17b27 /Lib/test/test_xreadline.py
parent595ac8a6fc2239a121ae769518fffc86473ed005 (diff)
downloadcpython-163f8000951ef3ef779dfd0001184dc247ac5f45.zip
cpython-163f8000951ef3ef779dfd0001184dc247ac5f45.tar.gz
cpython-163f8000951ef3ef779dfd0001184dc247ac5f45.tar.bz2
Remove tests for mpz, rotor, xreadlines
Diffstat (limited to 'Lib/test/test_xreadline.py')
-rw-r--r--Lib/test/test_xreadline.py46
1 files changed, 0 insertions, 46 deletions
diff --git a/Lib/test/test_xreadline.py b/Lib/test/test_xreadline.py
deleted file mode 100644
index 0ba4adc..0000000
--- a/Lib/test/test_xreadline.py
+++ /dev/null
@@ -1,46 +0,0 @@
-from test.test_support import verbose
-
-import warnings
-warnings.filterwarnings('ignore', "xreadlines", DeprecationWarning)
-
-class XReader:
- def __init__(self):
- self.count = 5
-
- def readlines(self, sizehint = None):
- self.count = self.count - 1
- return map(lambda x: "%d\n" % x, range(self.count))
-
-class Null: pass
-
-import xreadlines
-
-
-lineno = 0
-
-try:
- xreadlines.xreadlines(Null())[0]
-except AttributeError, detail:
- print "AttributeError (expected)"
-else:
- print "Did not throw attribute error"
-
-try:
- xreadlines.xreadlines(XReader)[0]
-except TypeError, detail:
- print "TypeError (expected)"
-else:
- print "Did not throw type error"
-
-try:
- xreadlines.xreadlines(XReader())[1]
-except RuntimeError, detail:
- print "RuntimeError (expected):", detail
-else:
- print "Did not throw runtime error"
-
-xresult = ['0\n', '1\n', '2\n', '3\n', '0\n', '1\n', '2\n', '0\n', '1\n', '0\n']
-for line in xreadlines.xreadlines(XReader()):
- if line != xresult[lineno]:
- print "line %d differs" % lineno
- lineno += 1