You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/collections/collection_root_user/ansible_collections/testns/testcoll/plugins/module_utils/subpkg_with_init.py

12 lines
438 B
Python

# NB: this module should never be loaded, since we'll see the subpkg_with_init package dir first
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
def thingtocall():
raise Exception('this should never be called (loaded discrete module instead of package module)')
def anotherthingtocall():
raise Exception('this should never be called (loaded discrete module instead of package module)')