]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] gh-136087: Remove `\r` from documented `os.linesep` values (GH-136088) (#136111)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 30 Jun 2025 07:44:29 +0000 (09:44 +0200)
committerGitHub <noreply@github.com>
Mon, 30 Jun 2025 07:44:29 +0000 (10:44 +0300)
gh-136087: Remove `\r` from documented `os.linesep` values (GH-136088)
(cherry picked from commit 980a56843bf631ea80c1486a367d41031dec6a7e)

Co-authored-by: sobolevn <mail@sobolevn.me>
Lib/os.py

index 643a7b2f58176a7da111273becfe7856e7c77884..12926c832f5ba5c5cc6bfd5e5905eef654835a88 100644 (file)
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -10,7 +10,7 @@ This exports:
   - os.extsep is the extension separator (always '.')
   - os.altsep is the alternate pathname separator (None or '/')
   - os.pathsep is the component separator used in $PATH etc
-  - os.linesep is the line separator in text files ('\r' or '\n' or '\r\n')
+  - os.linesep is the line separator in text files ('\n' or '\r\n')
   - os.defpath is the default search path for executables
   - os.devnull is the file path of the null device ('/dev/null', etc.)