]> git.phdru.name Git - m_lib.git/blobdiff - m_lib/net/ftp/ftpparse.py
Remove wrong copyright lines, fix module docstrings
[m_lib.git] / m_lib / net / ftp / ftpparse.py
index cb4c569ddb2f2670ce9310c2a5ab3dbb9631cd94..1dcef0cd73bc89bdd73f7b46b18bd2ba481dfaad 100755 (executable)
@@ -1,9 +1,7 @@
 #! /usr/bin/env python
 """Parse output of FTP LIST command.
    Pure python implementation.
-   Author: Oleg Broytman <phd@phd.pp.ru>.
-   Copyright (C) 2003-2005 PhiloSoft Design.
-   License: GPL.
+
    See http://cr.yp.to/ftpparse.html, http://effbot.org/downloads#ftpparse,
    http://c0re.23.nu/c0de/ftpparsemodule/ and http://www.ocgy.ubc.ca/~tang/treeftp
 
@@ -23,20 +21,6 @@ Definitely not covered:
 """
 
 
-__version__ = "1.1.2"
-__author__ = "Oleg Broytman <phd@phd.pp.ru>"
-__copyright__ = "Copyright (C) 2003-2005 PhiloSoft Design"
-
-
-# ChangeLog:
-# 2005-04-26 version 1.1.2 [phd] Changed some comments and URLs.
-# 2003-07-23 version 1.1.1 [phd] Upgrade to Python 2.2: 0/1 => False/True.
-# 2003-07-17 version 1.1.0 [phd] Great renaming.
-# 2003-07-17 version 1.0.1 [phd] Preserve leading spaces in UNIX format.
-# 2003-02-17 version 1.0.0 [phd] First public version.
-# 2003-02-07 version 0.0.1 [phd] started the project.
-
-
 try:
    from mx import DateTime
 except ImportError: