diff options
author | Guido van Rossum <guido@python.org> | 2000-02-28 15:12:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-28 15:12:25 (GMT) |
commit | 98d9fd3e68075ce6fe7642ed8793c1abee69edf6 (patch) | |
tree | e7edc9f6bc97f7543df5b741520cf0f607176b15 /Lib/ftplib.py | |
parent | ee28c3a5eae41a9b349ebbe7c4583d6a36a1984c (diff) | |
download | cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.zip cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.tar.gz cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.tar.bz2 |
Simple changes by Gerrit Holl - move author acknowledgements out of
docstrings into comments.
Diffstat (limited to 'Lib/ftplib.py')
-rw-r--r-- | Lib/ftplib.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 94ae880..9e3b701 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -3,11 +3,6 @@ Based on RFC 959: File Transfer Protocol (FTP), by J. Postel and J. Reynolds -Changes and improvements suggested by Steve Majewski. -Modified by Jack to work on the mac. -Modified by Siebren to support docstrings and PASV. - - Example: >>> from ftplib import FTP @@ -34,6 +29,11 @@ A nice test that reveals some of the network dialogue would be: python ftplib.py -d localhost -l -p -l """ +# +# Changes and improvements suggested by Steve Majewski. +# Modified by Jack to work on the mac. +# Modified by Siebren to support docstrings and PASV. +# import os import sys |