2002-07-23 16:04:11 -03:00
|
|
|
from test.test_support import verbose
|
2001-01-09 17:47:44 -04:00
|
|
|
|
2002-08-06 14:14:04 -03:00
|
|
|
import warnings
|
|
|
|
warnings.filterwarnings('ignore', "xreadlines", DeprecationWarning)
|
|
|
|
|
2001-01-09 17:47:44 -04:00
|
|
|
class XReader:
|
2001-01-17 22:22:22 -04:00
|
|
|
def __init__(self):
|
|
|
|
self.count = 5
|
2001-01-09 17:47:44 -04:00
|
|
|
|
2001-01-17 22:22:22 -04:00
|
|
|
def readlines(self, sizehint = None):
|
|
|
|
self.count = self.count - 1
|
|
|
|
return map(lambda x: "%d\n" % x, range(self.count))
|
2001-01-09 17:47:44 -04:00
|
|
|
|
|
|
|
class Null: pass
|
|
|
|
|
|
|
|
import xreadlines
|
|
|
|
|
|
|
|
|
|
|
|
lineno = 0
|
|
|
|
|
|
|
|
try:
|
2001-01-17 22:22:22 -04:00
|
|
|
xreadlines.xreadlines(Null())[0]
|
2001-01-09 17:47:44 -04:00
|
|
|
except AttributeError, detail:
|
2001-01-17 22:22:22 -04:00
|
|
|
print "AttributeError (expected)"
|
2001-01-09 17:47:44 -04:00
|
|
|
else:
|
2001-01-17 22:22:22 -04:00
|
|
|
print "Did not throw attribute error"
|
2001-01-09 17:47:44 -04:00
|
|
|
|
|
|
|
try:
|
2001-01-17 22:22:22 -04:00
|
|
|
xreadlines.xreadlines(XReader)[0]
|
2001-01-09 17:47:44 -04:00
|
|
|
except TypeError, detail:
|
2001-01-17 22:22:22 -04:00
|
|
|
print "TypeError (expected)"
|
2001-01-09 17:47:44 -04:00
|
|
|
else:
|
2001-01-17 22:22:22 -04:00
|
|
|
print "Did not throw type error"
|
2001-01-09 17:47:44 -04:00
|
|
|
|
|
|
|
try:
|
2001-01-17 22:22:22 -04:00
|
|
|
xreadlines.xreadlines(XReader())[1]
|
2001-01-09 17:47:44 -04:00
|
|
|
except RuntimeError, detail:
|
2001-01-17 22:22:22 -04:00
|
|
|
print "RuntimeError (expected):", detail
|
2001-01-09 17:47:44 -04:00
|
|
|
else:
|
2001-01-17 22:22:22 -04:00
|
|
|
print "Did not throw runtime error"
|
2001-01-09 17:47:44 -04:00
|
|
|
|
|
|
|
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()):
|
2001-01-17 22:22:22 -04:00
|
|
|
if line != xresult[lineno]:
|
|
|
|
print "line %d differs" % lineno
|
|
|
|
lineno += 1
|