10 lines
214 B
Python
10 lines
214 B
Python
"""test module importing itself"""
|
|
# pylint: disable=no-absolute-import,using-constant-test
|
|
from __future__ import print_function
|
|
from . import func_w0406
|
|
|
|
__revision__ = 0
|
|
|
|
|
|
if __revision__:
|
|
print(func_w0406)
|