Blame lang/python/src/constants/protocol.py

Packit Service 672cf4
# Copyright (C) 2004 Igor Belyi <belyi@users.sourceforge.net>
Packit Service 672cf4
# Copyright (C) 2002 John Goerzen <jgoerzen@complete.org>
Packit Service 672cf4
#
Packit Service 672cf4
#    This library is free software; you can redistribute it and/or
Packit Service 672cf4
#    modify it under the terms of the GNU Lesser General Public
Packit Service 672cf4
#    License as published by the Free Software Foundation; either
Packit Service 672cf4
#    version 2.1 of the License, or (at your option) any later version.
Packit Service 672cf4
#
Packit Service 672cf4
#    This library is distributed in the hope that it will be useful,
Packit Service 672cf4
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 672cf4
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 672cf4
#    Lesser General Public License for more details.
Packit Service 672cf4
#
Packit Service 672cf4
#    You should have received a copy of the GNU Lesser General Public
Packit Service 672cf4
#    License along with this library; if not, write to the Free Software
Packit Service 672cf4
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
Packit Service 672cf4
Packit Service 672cf4
from __future__ import absolute_import, print_function, unicode_literals
Packit Service 6c01f9
del absolute_import, print_function, unicode_literals
Packit Service 672cf4
Packit Service 672cf4
from gpg import util
Packit Service 672cf4
util.process_constants('GPGME_PROTOCOL_', globals())
Packit Service 6c01f9
del util