From 05f360c493a4ad5f89bec39187a36e6bcab7c527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 3 May 2025 17:36:39 +0200 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 ce97b3f..5f2e5ce 100644 --- a/README.md +++ b/README.md @@ -1600,7 +1600,7 @@ Open ``` ```python -.write() # Writes a string or bytes object to the file. +.write() # Writes a string or bytes object. .writelines() # Writes a coll. of strings or bytes objects. .flush() # Flushes write buffer. Runs every 4096/8192 B. .close() # Closes the file after flushing write buffer. diff --git a/index.html b/index.html index 0cd45a5..869e1e8 100644 --- a/index.html +++ b/index.html @@ -1371,7 +1371,7 @@ args = p.parse_args() # Returns a list of remaining lines. <str/bytes> = next(<file>) # Returns a line using buffer. Do not mix. -
<file>.write(<str/bytes>)           # Writes a string or bytes object to the file.
+
<file>.write(<str/bytes>)           # Writes a string or bytes object.
 <file>.writelines(<collection>)     # Writes a coll. of strings or bytes objects.
 <file>.flush()                      # Flushes write buffer. Runs every 4096/8192 B.
 <file>.close()                      # Closes the file after flushing write buffer.