summaryrefslogtreecommitdiffstats
path: root/Lib/uu.py
diff options
context:
space:
mode:
authorMatthew Rollings <1211162+stealthcopter@users.noreply.github.com>2019-12-02 22:25:21 (GMT)
committerGuido van Rossum <guido@python.org>2019-12-02 22:25:21 (GMT)
commita62ad4730c9b575f140f24074656c0257c86a09a (patch)
tree2fe5664ba3d3bf745bda95c2539e4c25e3535380 /Lib/uu.py
parent016b0280b8a97bc26e97c6a8dd5fb8fad5fe72e4 (diff)
downloadcpython-a62ad4730c9b575f140f24074656c0257c86a09a.zip
cpython-a62ad4730c9b575f140f24074656c0257c86a09a.tar.gz
cpython-a62ad4730c9b575f140f24074656c0257c86a09a.tar.bz2
bpo-38945: UU Encoding: Don't let newline in filename corrupt the output format (#17418)
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
#