Exemplo n.º 1
0
def test2():
    """."""
    from modTwo import test
    test()
Exemplo n.º 2
0
def test1():
    """."""
    print("TEST")
    from modOne import test
    test()
Exemplo n.º 3
0
Created on Thu Aug  4 08:24:08 2016

@author: hclqaVirtualBox1
"""


def test1():
    """."""
    print("TEST")
    from modOne import test
    test()


def test2():
    """."""
    from modTwo import test
    test()


def test3():
    """."""
    print("TEST 3")
    from modOne import test
    test()

test1()
test2()
test1()
test3()
test()
Exemplo n.º 4
0
import modOne

modOne.test()
Exemplo n.º 5
0
def test1():
    from modOne import test
    test()
Exemplo n.º 6
0
def test2():
    from modTwo import test
    test()
Exemplo n.º 7
0
import modOne as mo

mo.test()