Add python3 compat boilerplate

pull/4420/head
Toshio Kuratomi 2016-03-24 18:04:16 -07:00
parent 17e8500202
commit 80e7fbff75
1 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
__metaclass__ = type
from __future__ import (absolute_import, division, print_function)
def issubset(a, b):
return set(a) <= set(b)
@ -23,7 +24,7 @@ def issubset(a, b):
def issuperset(a, b):
return set(a) >= set(b)
class TestModule(object):
class TestModule:
''' Ansible math jinja2 tests '''
def tests(self):