From: <sv...@ww...> - 2004-06-03 06:36:36
|
Author: mkrose Date: 2004-06-02 23:36:28 -0700 (Wed, 02 Jun 2004) New Revision: 986 Modified: trunk/CSP/tools/sublib.py Log: Add copyright notice and module comment to sublib.py Modified: trunk/CSP/tools/sublib.py =================================================================== --- trunk/CSP/tools/sublib.py 2004-06-03 06:28:45 UTC (rev 985) +++ trunk/CSP/tools/sublib.py 2004-06-03 06:36:28 UTC (rev 986) @@ -1,3 +1,29 @@ +#!/usr/bin/python +# +# Copyright 2004 Mark Rose <mk...@us...> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +""" +Trivial library for accessing subversion via the command line +tool. This should really be replaced by either the subversion +python bindings (or a thin wrapper around them) once they reach +a stable state with decent documentation. +""" + import os import os.path import popen2 |