Commit f8775695 authored by Jim Fulton's avatar Jim Fulton

Use print to display tell output to avoid unimportant differences

between logs and ints.
parent 1078ed5b
......@@ -533,7 +533,7 @@ An attempt to open a bad cache file will cause it to be dropped and recreated.
>>> cache.close()
>>> f = open('cache')
>>> f.seek(0, 2)
>>> f.tell()
>>> print f.tell()
1000
>>> f.close()
......@@ -548,13 +548,13 @@ An attempt to open a bad cache file will cause it to be dropped and recreated.
>>> cache.close()
>>> f = open('cache')
>>> f.seek(0, 2)
>>> f.tell()
>>> print f.tell()
1000
>>> f.close()
>>> f = open('cache.bad')
>>> f.seek(0, 2)
>>> f.tell()
>>> print f.tell()
100
>>> f.close()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment