From dfdfbbf15ad178a1639f1f97ba1d33549260ea12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 7 Jan 2020 14:44:13 +0100 Subject: [PATCH] Open --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b9997af..c441427 100644 --- a/README.md +++ b/README.md @@ -1532,7 +1532,7 @@ Open ```python = .read(size=-1) # Reads 'size' chars/bytes or until EOF. - = .readline() # Returns a line or empty string on EOF. + = .readline() # Returns a line or empty string/bytes on EOF. = .readlines() # Returns a list of remaining lines. = next() # Returns a line using buffer. Do not mix. ``` diff --git a/index.html b/index.html index 359c2ce..e1aacf6 100644 --- a/index.html +++ b/index.html @@ -1424,7 +1424,7 @@ value = args.<name>
<str/bytes> = <file>.read(size=-1)  # Reads 'size' chars/bytes or until EOF.
-<str/bytes> = <file>.readline()     # Returns a line or empty string on EOF.
+<str/bytes> = <file>.readline()     # Returns a line or empty string/bytes on EOF.
 <list>      = <file>.readlines()    # Returns a list of remaining lines.
 <str/bytes> = next(<file>)          # Returns a line using buffer. Do not mix.