From 733acc387cc6bf26ab35d36e0219577ddf0defc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 2 Jul 2019 10:45:05 +0200 Subject: [PATCH] Open --- README.md | 1 + index.html | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 02577f3..5ae5311 100644 --- a/README.md +++ b/README.md @@ -1309,6 +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'.** ### Modes * **`'r'` - Read (default).** diff --git a/index.html b/index.html index 999be7c..69af18e 100644 --- a/index.html +++ b/index.html @@ -1187,6 +1187,7 @@ value = args.<name>

Modes