From 6733d701f1465cad4f5da4891f786a3716553d58 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 8 Oct 2007 19:48:15 +0000 Subject: [PATCH] Change the default encoding for ftplib.FTP to latin1 so that bytes can be in the range of 255 instead of only 128. --- Lib/ftplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/ftplib.py b/Lib/ftplib.py index cfc51ba26f..2df4123a53 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -103,7 +103,7 @@ class FTP: file = None welcome = None passiveserver = 1 - encoding = "ASCII" + encoding = "latin1" # Initialization method (called by class instantiation). # Initialize host to localhost, port to standard ftp port -- 2.40.0