2015-09-04 21:42:12 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
2015-07-05 18:05:44 +00:00
|
|
|
import sys
|
|
|
|
sys.path.append('.')
|
|
|
|
|
|
|
|
from example import test_function
|
|
|
|
from example import some_constant
|
|
|
|
from example import EMyEnumeration
|
|
|
|
from example import EFirstEntry
|
|
|
|
from example import Example4
|
|
|
|
|
|
|
|
print(EMyEnumeration)
|
|
|
|
print(EMyEnumeration.EFirstEntry)
|
|
|
|
print(EMyEnumeration.ESecondEntry)
|
|
|
|
print(EFirstEntry)
|
|
|
|
|
|
|
|
print(test_function())
|
|
|
|
print(test_function(7))
|
|
|
|
print(test_function(EMyEnumeration.EFirstEntry))
|
|
|
|
print(test_function(EMyEnumeration.ESecondEntry))
|
|
|
|
|
|
|
|
print(Example4.EMode)
|
|
|
|
print(Example4.EMode.EFirstMode)
|
|
|
|
print(Example4.EFirstMode)
|
|
|
|
Example4.test_function(Example4.EFirstMode)
|