diff --git a/README.md b/README.md index 5ae5311..82fa4ff 100644 --- a/README.md +++ b/README.md @@ -1309,7 +1309,7 @@ Open ``` * **`'encoding=None'` means default encoding is used, which is platform dependent. Best practice is to use `'encoding="utf-8"'` whenever possible.** * **`'newline=None'` means all different end of line combinations are converted to '\n' on read, while on write all '\n' characters are converted to system's default line separator.** -* **`'newline=""'` means no conversions take place, but lines are still broken on either '\n', '\r' or '\r\n'.** +* **`'newline=""'` means no conversions take place, but lines are still broken by readline() on either '\n', '\r' or '\r\n'.** ### Modes * **`'r'` - Read (default).** diff --git a/index.html b/index.html index 69af18e..cd95086 100644 --- a/index.html +++ b/index.html @@ -1187,7 +1187,7 @@ value = args.<name>

Modes