Change the default encoding for ftplib.FTP to latin1 so that bytes can be in
the range of 255 instead of only 128.
diff --git a/Lib/ftplib.py b/Lib/ftplib.py
index cfc51ba..2df4123 100644
--- a/Lib/ftplib.py
+++ b/Lib/ftplib.py
@@ -103,7 +103,7 @@
     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