]> git.phdru.name Git - m_lib.git/commitdiff
Remove wrong copyright lines, fix module docstrings
authorOleg Broytman <phd@phdru.name>
Mon, 25 Jul 2016 14:36:30 +0000 (17:36 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 25 Jul 2016 14:38:46 +0000 (17:38 +0300)
42 files changed:
README.txt
m_lib/__init__.py
m_lib/clock/__init__.py
m_lib/clock/mkclock.py
m_lib/clock/tstclock.py
m_lib/defenc.py
m_lib/flad/__init__.py
m_lib/flad/flad.py
m_lib/flad/fladc.py
m_lib/flad/fladm.py
m_lib/flad/fladw.py
m_lib/flog.py
m_lib/hash/MKhash.py
m_lib/hash/ZODBhash.py
m_lib/hash/__init__.py
m_lib/hash/zshelve.py
m_lib/lazy/__init__.py
m_lib/lazy/dict.py
m_lib/lazy/imports.py
m_lib/m_path.py
m_lib/m_shutil.py
m_lib/mcrypt.py
m_lib/md5wrapper.py
m_lib/net/__init__.py
m_lib/net/ftp/__init__.py
m_lib/net/ftp/ftpparse.py
m_lib/net/sms.py
m_lib/net/www/__init__.py
m_lib/net/www/dtml.py
m_lib/net/www/html.py
m_lib/net/www/serverpush.py
m_lib/net/www/url_lib.py
m_lib/net/www/util.py
m_lib/net/www/xml.py
m_lib/opdate.py
m_lib/opstring.py
m_lib/pbar/__init__.py
m_lib/pbar/tty_pbar.py
m_lib/rus/__init__.py
m_lib/rus/lat2rus.py
m_lib/rus/rus2lat.py
m_lib/tty_menu.py

index 0a798dd4888f6b04c50597ccba7e939871a81446..e1cb47684b9ebb79e690e985b94b776c70648d57 100644 (file)
@@ -1,4 +1,4 @@
-Broytman Library for Python, Copyright (C) 1996-2013 PhiloSoft Design
+Broytman Library for Python, Copyright (C) 1996-2016 PhiloSoft Design
 Author: Oleg Broytman <phd@phdru.name>
 License: GPL
 
index 438c49cecf4ecd9117ec72bc5122eaf239ec9530..541bfc86dd958d58717ab973f2c32e5a78bb0d75 100644 (file)
@@ -1 +1 @@
-"Broytman Library for Python, Copyright (C) 1996-2001 PhiloSoft Design"
+"""Broytman Library for Python, Copyright (C) 1996-2016 PhiloSoft Design"""
index 7719ef8f8fbfa8a108a9d2a29ae23aa657d4fe7d..2cc78b92efcb624007c581029d743be3269fc9f4 100644 (file)
@@ -1 +1 @@
-"Broytman Clock Library for Python, Copyright (C) 1996-2001 PhiloSoft Design"
+"""Broytman Clocks for Python"""
index f65c7662c3aea7332aa834648ff03b3679d28f91..7841ec847ceac3ee64d81d21a53ed5ecd0a95463 100755 (executable)
@@ -1,9 +1,5 @@
 #! /usr/bin/env python
-"""
-   Test if current interpreter do not have clock() and define it as need
-
-   Written by Broytman, Jul 1997. Copyright (C) 1997 PhiloSoft Design
-"""
+"""Test if current interpreter do not have clock() and define it as need"""
 
 import sys, time
 
index 827fa1d9be2729af1b1e0020a3034d1722fa86a8..5dd17375d41e89f817649550fe7528133b00b6b1 100755 (executable)
@@ -1,9 +1,5 @@
 #! /usr/bin/env python
-"""
-   Define clock() for systems that do not have it
-
-   Written by Broytman, Jul 1997. Copyright (C) 1997 PhiloSoft Design
-"""
+"""Define clock() for systems that do not have it"""
 
 from clock import clock
 from time import sleep
index edcd80be4b691d94eb51d30b43f4e8c643d3a621..90add9d4092b70b7eb30ec4f72de4611f17b56d7 100755 (executable)
@@ -1,8 +1,5 @@
 #! /usr/bin/env python
-"""Get default encoding
-
-   Written by Oleg Broytman. Copyright (C) 2007-2016 PhiloSoft Design.
-"""
+"""Get default encoding"""
 
 __all__ = ['default_encoding']
 
index 89dcb8f104c161cce4d6209b167f0a7e0293ce81..e561eae1fddd7f6c85e1ff3a83b45e5246d172db 100644 (file)
@@ -1 +1 @@
-"Broytman Flat ASCII Database for Python, Copyright (C) 1996-2001 PhiloSoft Design"
+"""Broytman Flat ASCII Database for Python"""
index 05703c149f34872d451f213d185f0e7dfef4d6d4..830fdfd07beae6c9b38cdafa8f2be20bcb453cca 100644 (file)
@@ -1,8 +1,6 @@
 """
    Flat ASCII Database.
    This module implements a very simple database on the flat ASCII files.
-
-   Written by Broytman. Copyright (C) 1997-2005 PhiloSoft Design
 """
 
 
index bbde04038571c1e2f51f151656bf184e4d3b1a64..3f5c3541f17c758f0f3958546c905e89acd804f7 100644 (file)
@@ -1,7 +1,5 @@
 """
    Flat ASCII Database to implement VERY simple config files.
-
-   Written by Broytman. Copyright (C) 1997-2005 PhiloSoft Design
 """
 
 
index 9e835bca2b4eb25c326dcd5e7abbacb02c186193..c0e2886061121e064af58eea1d9fa47d7a001f90 100644 (file)
@@ -1,7 +1,5 @@
 """
    Flat ASCII Database with "must" keys
-
-   Written by Broytman. Copyright (C) 1997-2005 PhiloSoft Design
 """
 
 
index fe48b007c25b0ca65d9c3d62edd7f1f60378d435..c50d410367e825660e4185e97b96031af7002a10 100644 (file)
@@ -1,7 +1,5 @@
 """
    Flat ASCII Database to load WIN.INI-like files.
-
-   Written by Broytman. Copyright (C) 1997-2005 PhiloSoft Design
 """
 
 
index b46bae59833b809b686c87ed839a1e152d768a6e..2c01d859b805da53b4fff9f7a05af01c49876ed4 100755 (executable)
@@ -1,8 +1,5 @@
 #! /usr/bin/env python
-"""File logger
-
-   Written by Broytman, Dec 1997. Copyright (C) 1997 PhiloSoft Design.
-"""
+"""File logger"""
 
 
 from time import *
index 707d9febffef3a6e1c985b751d4916624d18cd4f..812a14a9eba5661389cac80a741fd404ac88d0c1 100644 (file)
@@ -1,8 +1,4 @@
-"""Provide a (g)dbm-compatible interface to MetaKit.
-Author: Oleg Broytman <phd@phd.pp.ru>
-Copyright (C) 2001-2002 PhiloSoft Design
-License: Python"""
-
+"""(g)dbm-compatible interface to MetaKit"""
 
 import sys
 try:
index 13073c5a52c3e5d0cbeb7626ce231455cd4a91d5..fb1361d19ae00ec5e02ad9cabbec8c4615baa6fe 100644 (file)
@@ -1,8 +1,4 @@
-"""Provide a (g)dbm-compatible interface to ZODB.
-Author: Oleg Broytman <phd@phd.pp.ru>
-Copyright (C) 2001-2002 PhiloSoft Design
-License: Python"""
-
+"""(g)dbm-compatible interface to ZODB"""
 
 import sys
 try:
index 626db2b55334f652fe04b35ad9b8ef96395db6d6..dfd88f00a168344f6fef39b119bf586f6022f55d 100644 (file)
@@ -1,8 +1,6 @@
-"""Extended disk hashes package. It extends anydbm/whichdb with ZODB and
-MetaKit-based hashes.
-Author: Oleg Broytman <phd@phd.pp.ru>
-Copyright (C) 2001-2003 PhiloSoft Design
-License: Python"""
+"""Extended disk hashes package.
+
+It extends anydbm/whichdb with ZODB and MetaKit-based hashes."""
 
 
 __all__ = ["zshelve", "ZODBhash", "MKhash"]
index b9feb144f5ec0b5266d3be21643948f82fd42453..10bb367feccd9228645c3b8327a70a65ef8d7120 100644 (file)
@@ -1,8 +1,4 @@
-"""Compressed shelves.
-Author: Oleg Broytman <phd@phd.pp.ru>
-Copyright (C) 2001-2003 PhiloSoft Design
-License: Python"""
-
+"""Compressed shelves"""
 
 from shelve import DbfilenameShelf
 from zlib import compress, decompress
index 4dedfba13abdc79fd739d760fd8a271bd4a05aec..d688c2ff409db474824a060c0b153f559610e97b 100644 (file)
@@ -1,4 +1,4 @@
-"Broytman WWW Library for Python, Copyright (C) 1996-2003 PhiloSoft Design"
+"""Broytman WWW Library for Python"""
 
 
 __all__ = [
index c6750e4372c5ce7f08ba2bad69c4db80ea3c2440..22fd34234682fb5100713ce095136ca023649c2e 100644 (file)
@@ -1,4 +1,4 @@
-"Lazy dictionaries calculate self content upon first access"
+"""Lazy dictionaries calculate self content upon first access"""
 
 class LazyDict:
    "Abstract parent of all lazy dictionaries"
index 99eb03293654ab317612a24b28dd3dd1c3e066e1..482c3ec0ce4fc9534db7416fad8e90124b1b4021 100644 (file)
@@ -1,4 +1,4 @@
-"Lazy imoport - import the module upon first request"
+"""Lazy imoport - import the module upon first request"""
 
 
 try:
index 6d2072006c3043f74c340f9d8512bd6314f1894a..0131289c1afdbf1b9a7a7ffb31187c0b185c73b7 100755 (executable)
@@ -3,9 +3,6 @@
 #
 # useful function(s) for manipulating paths
 #
-# Author: Oleg Broytman <phd@phd.pp.ru>
-# Copyright (C) 2002 PhiloSoft Design
-#
 
 
 _homedir = None
index 10e5ebf552e4eaaf25f1fc2fe59b9ffd0e498704..e4595c7693024df7454331c855c457f5a62dfb74 100755 (executable)
@@ -1,7 +1,6 @@
 #! /usr/bin/env python
-"""Broytman's shell utilities. Additional to shutil.py (standard library module)
-
-   Written by Broytman, Oct 1997. Copyright (C) 1997 PhiloSoft Design.
+"""
+Shell utilities. Additional to shutil.py (standard library module).
 """
 
 
index d6ae1dcd841670425f050af772938229bff1392b..acbead1f3f3426dcf8437597d39730977028302f 100755 (executable)
@@ -3,9 +3,6 @@
 #
 # useful function(s) for module crypt
 #
-# Author: Oleg Broytman <phd@phd.pp.ru>
-# Copyright (C) 1998-1999 PhiloSoft Design
-#
 
 
 import random, crypt
index 0c1a5f1e2c03ed8e991dfd642d8edf8fac302a8e..1cdac613efd5dad6e160dd490379d9721fd3b70e 100755 (executable)
@@ -1,10 +1,6 @@
 #! /usr/bin/env python
 """User wrapper for md5 builtin object"""
 
-__author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 1997-2012 PhiloSoft Design"
-__license__ = "GNU GPL"
-
 __all__ = ['md5wrapper']
 
 import sys
index b557b3a6525a081cb16fabe7ebebaf0b2a5f6fc7..3766561cb2cb56be5d14b75c60f302a2f999ffdb 100644 (file)
@@ -1,4 +1,4 @@
-"Broytman Net Library for Python, Copyright (C) 1996-2003 PhiloSoft Design"
+"""Broytman Net Library for Python"""
 
 
 __all__ = [
index 7e30fdac7a0fa0e37ba9a59d37005cd716688ea1..d4beff8fb0cc360a55a03ae2cefa9b980872a40e 100644 (file)
@@ -1,4 +1,4 @@
-"Broytman WWW Library for Python, Copyright (C) 1996-2003 PhiloSoft Design"
+"""Broytman FTP Library for Python"""
 
 
 __all__ = [
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:
index 423fd4a99c15a5d852fde2dd35bf26bde693fd82..9b7339001f1801fc0340b4adc3f6c008a160830a 100644 (file)
@@ -1,4 +1,4 @@
-"SMS Transports by phd, corvin, r_sabitov"
+"""SMS Transports by phd, corvin, r_sabitov"""
 # -*- coding: koi8-r -*-
 
 
index 27e9a0b66773b1e25f72725e5f7797583652013c..b124cbb949951fc9b35abb68d05daabba1a2f1c4 100644 (file)
@@ -1,4 +1,4 @@
-"Broytman WWW Library for Python, Copyright (C) 1996-2002 PhiloSoft Design"
+"""Broytman WWW Library for Python"""
 
 
 __all__ = [
index f8f42eeaae8862164ad92d015d8c22cae8c3dc85..694d3ad433a046f37ac9f300cb302871afea5cf7 100644 (file)
@@ -1,4 +1,4 @@
-"DTML utilities"
+"""DTML utilities"""
 
 class standard_html: # Base class for using with ZTemplates
    def __init__(self, title):
index 9a9ef6f6e6e64f3a8bf7f5b3b3c19b0f584b5a2d..723f0c0a4ff8d4c02820bd5ca1652de520c72ec8 100644 (file)
@@ -1,4 +1,4 @@
-"HTML parsers"
+"""HTML parsers"""
 
 
 from HTMLParser import HTMLParser as _HTMLParser
index 11f3c653c913ad44fe6894961790f754a6cbde8c..3bc880e501ef231a52e96bcb428d1bbee707148b 100644 (file)
@@ -1,4 +1,4 @@
-"Server Push"
+"""Server Push"""
 
 
 import sys, mimetools
index 2ba2d4b90b5157168b7633eb4a10a4b8a08583bc..e0560efdfdc01cb23e71dc15a941ccc70de2f8e4 100644 (file)
@@ -1,4 +1,4 @@
-"url_lib"
+"""url_lib"""
 
 
 from urllib import FancyURLopener
index 28b8f09eb8799b347e8319799a2421d24d2de6d2..1d9d72aa9bfcfbeaef493562d1e7b495d5d1d25e 100644 (file)
@@ -1,4 +1,4 @@
-"Common WWW/CGI utilities"
+"""Common WWW/CGI utilities"""
 
 
 import sys, os
index 532afb69256be228d74282022e7cacdffe45ab3a..19058fbc543c04396f264968433dfcd6f30dcf11 100644 (file)
@@ -1,4 +1,4 @@
-"XML parsers"
+"""XML parsers"""
 
 
 import re, xmllib
index ac53c81c5385403a9caac3c4a54b7c757658c057..13a9d253354d0f7dec2d7877f427b03b97dd79e3 100755 (executable)
@@ -5,9 +5,6 @@
 # opDate - date/time manipulation routines
 # Some ideas came from Turbo Professional/Object Professional (t/o)pDate.PAS
 #
-# Written by Broytman, Nov 1997 - Dec 2003
-# Copyright (C) 1997-2003 PhiloSoft Design
-#
 
 
 from string import *
index 92d193bb63539d255de0a4e9a389195a686b3f30..e01a043786186c3b0ea9c9fcf033871be5b6a679 100755 (executable)
@@ -5,8 +5,6 @@
 # opString - string/pathnames manipulation routines
 # Some ideas came from Turbo Professional/Object Professional (t/o)pString.PAS
 #
-# Written by Broytman, Nov 1997. Copyright (C) 1997 PhiloSoft Design
-#
 
 
 from string import *
index 89dcb8f104c161cce4d6209b167f0a7e0293ce81..5de5d2ae0b974e95fcd8cfaae24e5507d174f9ec 100644 (file)
@@ -1 +1 @@
-"Broytman Flat ASCII Database for Python, Copyright (C) 1996-2001 PhiloSoft Design"
+"""Broytman Progress Bar for Python"""
index 3903d1f2d4205ef53baaf0bac617a95eccb47bee..a263c877fb7f3b1fd43600576dba4f8683c54d4e 100644 (file)
@@ -1,8 +1,4 @@
-"""
-   Progress bar (TTY version)
-
-   Written by Broytman, Jan 1997 - Sep 2003. Copyright (C) 1997-2003 PhiloSoft Design
-"""
+"""Progress bar (TTY version)"""
 
 
 import sys, os
index a4f13fabab02741f53235d93a7990a808c818092..adc1e4699f6fde183906e44115627517e37c3b9f 100644 (file)
@@ -1,4 +1,4 @@
-"Broytman WWW Library for Python, Copyright (C) 1996-2003 PhiloSoft Design"
+"""Broytman Rus Library for Python"""
 
 
 __all__ = [
index abf8af3823708ec56a391b81488942a7dbd607e6..4076fa24afd45b8cf5282e7bc315bb1309318ee7 100755 (executable)
@@ -3,7 +3,6 @@
 
 #
 # Lat -> Rus translation
-# Written by Broytman. Copyright (C) 2002 PhiloSoft Design
 #
 
 lat2koi_d = {
index dda03dab0a52de89add34af7948a407a01e05ea9..b2677b244a99d69878b35da21d48c229baee9042 100755 (executable)
@@ -3,7 +3,6 @@
 
 #
 # Rus -> Lat transliteration (koi2lat and win2lat)
-# Written by Broytman. Copyright (C) 1997-2002 PhiloSoft Design
 #
 
 koi2lat_d = {
index 35ba43d1ba49d5db64763f6c0105c4e4ecb238fd..0c41c86f7bb5f921f3b7bebbee2fb41841f0da67 100755 (executable)
@@ -1,8 +1,5 @@
 #! /usr/bin/env python
-"""tty menus
-
-   Written by Broytman, Mar 1998. Copyright (C) 1997 PhiloSoft Design.
-"""
+"""tty menus"""
 
 
 import string