diff options
| author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-11-14 00:27:35 +0300 |
|---|---|---|
| committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-11-14 00:27:35 +0300 |
| commit | 8212773adb69309639833395bae8df487bd15c66 (patch) | |
| tree | 71066fbe13951bf14b117471168adc75a86885bc /tests/io/file1.py | |
| parent | 00a9590e3a27c8784a9d3a95c669142aad4a025f (diff) | |
tests: Use read() instead of readall().
Diffstat (limited to 'tests/io/file1.py')
| -rw-r--r-- | tests/io/file1.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |
