|
Revision 3306, 1.0 kB
(checked in by mscott, 1 year ago)
|
Change copyright from 2001-2006 to 2001-2007.
|
| Line | |
|---|
| 1 |
"""Description of module. |
|---|
| 2 |
|
|---|
| 3 |
For copyright, license, and warranty, see bottom of file. |
|---|
| 4 |
""" |
|---|
| 5 |
|
|---|
| 6 |
import sys |
|---|
| 7 |
from schevo.lib import optimize |
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
optimize.bind_all(sys.modules[__name__]) # Last line of module. |
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
# Copyright (C) 2001-2007 Orbtech, L.L.C. |
|---|
| 17 |
# |
|---|
| 18 |
# Schevo |
|---|
| 19 |
# http://schevo.org/ |
|---|
| 20 |
# |
|---|
| 21 |
# Orbtech |
|---|
| 22 |
# Saint Louis, MO |
|---|
| 23 |
# http://orbtech.com/ |
|---|
| 24 |
# |
|---|
| 25 |
# This toolkit is free software; you can redistribute it and/or |
|---|
| 26 |
# modify it under the terms of the GNU General Public |
|---|
| 27 |
# License as published by the Free Software Foundation; either |
|---|
| 28 |
# version 2 of the License, or (at your option) any later version. |
|---|
| 29 |
# |
|---|
| 30 |
# This toolkit is distributed in the hope that it will be useful, |
|---|
| 31 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 32 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 33 |
# General Public License for more details. |
|---|
| 34 |
# |
|---|
| 35 |
# You should have received a copy of the GNU General Public |
|---|
| 36 |
# License along with this library; if not, write to the Free Software |
|---|
| 37 |
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|