From 8212773adb69309639833395bae8df487bd15c66 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 14 Nov 2016 00:27:35 +0300 Subject: tests: Use read() instead of readall(). --- tests/io/file1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/io') diff --git a/tests/io/file1.py b/tests/io/file1.py index 8f9e4ef6e..af4176b64 100644 --- a/tests/io/file1.py +++ b/tests/io/file1.py @@ -37,7 +37,7 @@ except OSError: print('OSError') f.close() -# readall() error (call read() for compat with CPy) +# read() w/o args error f = open('io/data/file1', 'ab') try: f.read() -- cgit v1.2.3