Subversion Repositories programming

Rev

Rev 404 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 404 Rev 434
Line 1... Line 1...
1
#!/usr/bin/env python
1
#!/usr/bin/env python
-
 
2
# vim: set ts=4 sts=4 sw=4 textwidth=92:
-
 
3
 
-
 
4
"""
-
 
5
File Description
-
 
6
"""
2
 
7
 
3
__author__    = "Ira W. Snyder (devel@irasnyder.com)"
8
__author__    = "Ira W. Snyder (devel@irasnyder.com)"
4
__copyright__ = "Copyright (c) 2006, Ira W. Snyder (devel@irasnyder.com)"
9
__copyright__ = "Copyright (c) 2006, Ira W. Snyder (devel@irasnyder.com)"
5
__license__   = "GNU GPL v2 (or, at your option, any later version)"
10
__license__   = "GNU GPL v2 (or, at your option, any later version)"
6
 
11
 
-
 
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
7
# Module Description Goes Here
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
-
 
29
 
8
 
30
 
9
# Classes, code, etc go here.
31
# Classes, code, etc go here.
10
 
32
 
11
def main ():
33
def main ():
12
	pass
34
	pass
13
 
35
 
14
if __name__ == '__main__':
36
if __name__ == '__main__':
15
	main ()
37
	main ()
-
 
38