summaryrefslogtreecommitdiffstatshomepage
path: root/tests/io/file1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/io/file1.py')
-rw-r--r--tests/io/file1.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/io/file1.py b/tests/io/file1.py
index 8552f535bd..7d5154a4f8 100644
--- a/tests/io/file1.py
+++ b/tests/io/file1.py
@@ -2,3 +2,5 @@ f = open("io/data/file1")
print(f.read(5))
print(f.readline())
print(f.read())
+f = open("io/data/file1")
+print(f.readlines())