comparison fructose_gen.py @ 3:d8aeeb7f6785 fructose1.1.0

Changed the license to LGPL to be compatible with Fructose itself.
author Brian Neal <bgneal@gmail.com>
date Sat, 14 May 2011 14:20:44 -0500
parents d098192f01d9
children
comparison
equal deleted inserted replaced
2:a0ed36697b75 3:d8aeeb7f6785
2 """ 2 """
3 Copyright (C) 2011 by Brian Neal <bgneal@gmail.com> 3 Copyright (C) 2011 by Brian Neal <bgneal@gmail.com>
4 4
5 fructose_gen.py - A program to auto-generate the main() routine for the C++ 5 fructose_gen.py - A program to auto-generate the main() routine for the C++
6 testing framework Fructose. 6 testing framework Fructose.
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
7 20
8 """ 21 """
9 from __future__ import with_statement 22 from __future__ import with_statement
10 import re 23 import re
11 import optparse 24 import optparse