summaryrefslogtreecommitdiffstats
path: root/Lib/uu.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-12-02 22:44:44 (GMT)
committerGitHub <noreply@github.com>2019-12-02 22:44:44 (GMT)
commit8859fc629474ab1ca7eb2e67aec538097c327e58 (patch)
treeb755ac1d3671368753557afa3a0b47ec833cab68 /Lib/uu.py
parent9e728806d03fff8fa9e75159e567b2b4e040971b (diff)
downloadcpython-8859fc629474ab1ca7eb2e67aec538097c327e58.zip
cpython-8859fc629474ab1ca7eb2e67aec538097c327e58.tar.gz
cpython-8859fc629474ab1ca7eb2e67aec538097c327e58.tar.bz2
bpo-38945: UU Encoding: Don't let newline in filename corrupt the output format (GH-17418)
(cherry picked from commit a62ad4730c9b575f140f24074656c0257c86a09a) Co-authored-by: Matthew Rollings <1211162+stealthcopter@users.noreply.github.com>
Diffstat (limited to 'Lib/uu.py')
-rwxr-xr-xLib/uu.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/uu.py b/Lib/uu.py
index 9b1e5e6..9f1f37f 100755
--- a/Lib/uu.py
+++ b/Lib/uu.py
@@ -73,6 +73,13 @@ def encode(in_file, out_file, name=None, mode=None, *, backtick=False):
name = '-'
if mode is None:
mode = 0o666
+
+ #
+ # Remove newline chars from name
+ #
+ name = name.replace('\n','\\n')
+ name = name.replace('\r','\\r')
+
#
# Write the data
#