403 |
ira |
1 |
#!/usr/bin/env python
|
434 |
ira |
2 |
# vim: set ts=4 sts=4 sw=4 textwidth=92:
|
108 |
ira |
3 |
|
434 |
ira |
4 |
"""
|
|
|
5 |
File Description
|
|
|
6 |
"""
|
|
|
7 |
|
404 |
ira |
8 |
__author__ = "Ira W. Snyder (devel@irasnyder.com)"
|
403 |
ira |
9 |
__copyright__ = "Copyright (c) 2006, Ira W. Snyder (devel@irasnyder.com)"
|
|
|
10 |
__license__ = "GNU GPL v2 (or, at your option, any later version)"
|
|
|
11 |
|
434 |
ira |
12 |
# <filename>.py -- <short description>
|
|
|
13 |
#
|
|
|
14 |
# Copyright (C) 2007 Ira W. Snyder (devel@irasnyder.com)
|
|
|
15 |
#
|
|
|
16 |
# This program is free software; you can redistribute it and/or modify
|
|
|
17 |
# it under the terms of the GNU General Public License as published by
|
|
|
18 |
# the Free Software Foundation; either version 2 of the License, or
|
|
|
19 |
# (at your option) any later version.
|
|
|
20 |
#
|
|
|
21 |
# This program is distributed in the hope that it will be useful,
|
|
|
22 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
23 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
24 |
# GNU General Public License for more details.
|
|
|
25 |
#
|
|
|
26 |
# You should have received a copy of the GNU General Public License
|
|
|
27 |
# along with this program; if not, write to the Free Software
|
|
|
28 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
403 |
ira |
29 |
|
434 |
ira |
30 |
|
403 |
ira |
31 |
# Classes, code, etc go here.
|
|
|
32 |
|
|
|
33 |
def main ():
|
|
|
34 |
pass
|
|
|
35 |
|
|
|
36 |
if __name__ == '__main__':
|
|
|
37 |
main ()
|
434 |
ira |
38 |
|