Commit ab320e98 authored by Jim Fulton's avatar Jim Fulton

Use print to display tell output to avoid unimportant differences

between logs and ints.
parent 1598a271
...@@ -1058,7 +1058,7 @@ An attempt to open a bad cache file will cause it to be dropped and recreated. ...@@ -1058,7 +1058,7 @@ An attempt to open a bad cache file will cause it to be dropped and recreated.
>>> cache.close() >>> cache.close()
>>> f = open('cache') >>> f = open('cache')
>>> f.seek(0, 2) >>> f.seek(0, 2)
>>> f.tell() >>> print f.tell()
1000 1000
>>> f.close() >>> f.close()
...@@ -1073,13 +1073,13 @@ An attempt to open a bad cache file will cause it to be dropped and recreated. ...@@ -1073,13 +1073,13 @@ An attempt to open a bad cache file will cause it to be dropped and recreated.
>>> cache.close() >>> cache.close()
>>> f = open('cache') >>> f = open('cache')
>>> f.seek(0, 2) >>> f.seek(0, 2)
>>> f.tell() >>> print f.tell()
1000 1000
>>> f.close() >>> f.close()
>>> f = open('cache.bad') >>> f = open('cache.bad')
>>> f.seek(0, 2) >>> f.seek(0, 2)
>>> f.tell() >>> print f.tell()
100 100
>>> f.close() >>> 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