mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-04-10 02:41:14 +00:00
* Add Apache 2.0 license for Apache 2.0 licensed parts.
* Unify license headers.
* Move additional licenses to licenses/.
* Revert "Move additional licenses to licenses/."
This reverts commit c12b22de1c.
20 lines
511 B
Python
20 lines
511 B
Python
# (c) 2014, Toshio Kuratomi <tkuratomi@ansible.com>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# Make coding more python3-ish
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
#
|
|
# Compat for python2.7
|
|
#
|
|
|
|
# One unittest needs to import builtins via __import__() so we need to have
|
|
# the string that represents it
|
|
try:
|
|
import __builtin__
|
|
except ImportError:
|
|
BUILTINS = 'builtins'
|
|
else:
|
|
BUILTINS = '__builtin__'
|