diff options
Diffstat (limited to 'widgets/python')
| -rw-r--r-- | widgets/python/AnacondaWidgets.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/widgets/python/AnacondaWidgets.py b/widgets/python/AnacondaWidgets.py index b3ab13df8..4029b6963 100644 --- a/widgets/python/AnacondaWidgets.py +++ b/widgets/python/AnacondaWidgets.py @@ -1,3 +1,29 @@ +# +# Copyright (C) 2011-2013 Red Hat, Inc. +# +# 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, see <http://www.gnu.org/licenses/>. +# +# Author: Chris Lumens <clumens@redhat.com> +# + +""" +These classes and methods wrap the bindings automatically created by +gobject-introspection. They allow for creating more pythonic bindings +where necessary. For instance instead of creating a class and then +setting a bunch of properties, these classes allow passing the properties +at creation time. +""" from ..importer import modules from ..overrides import override |
