#3911 FTP.makeport was giving bad port numbers

reviewed by Benjamin and Antoine
diff --git a/Lib/ftplib.py b/Lib/ftplib.py
index c75b317..42f2bff 100644
--- a/Lib/ftplib.py
+++ b/Lib/ftplib.py
@@ -254,7 +254,7 @@
         port number.
         '''
         hbytes = host.split('.')
-        pbytes = [repr(port/256), repr(port%256)]
+        pbytes = [repr(port//256), repr(port%256)]
         bytes = hbytes + pbytes
         cmd = 'PORT ' + ','.join(bytes)
         return self.voidcmd(cmd)