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, pydoc
|
|
|
|
sys.path.append('.')
|
|
|
|
|
|
|
|
from example import Example2
|
|
|
|
|
|
|
|
Example2.value = 15
|
|
|
|
print(Example2.value)
|
|
|
|
print(Example2.value2)
|
|
|
|
|
|
|
|
try:
|
|
|
|
Example2()
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
|
|
|
|
try:
|
|
|
|
Example2.value2 = 15
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
|
|
|
|
instance = Example2.new_instance()
|
|
|
|
|
|
|
|
dict_result = instance.get_dict()
|
|
|
|
dict_result['key2'] = 'value2'
|
|
|
|
instance.print_dict(dict_result)
|
|
|
|
|
|
|
|
dict_result = instance.get_dict_2()
|
|
|
|
dict_result['key2'] = 'value2'
|
|
|
|
instance.print_dict_2(dict_result)
|
|
|
|
|
2015-11-14 18:04:49 +00:00
|
|
|
set_result = instance.get_set()
|
2016-01-17 21:36:43 +00:00
|
|
|
set_result.add('key3')
|
2015-11-14 18:04:49 +00:00
|
|
|
instance.print_set(set_result)
|
|
|
|
|
|
|
|
set_result = instance.get_set2()
|
2016-01-17 21:36:43 +00:00
|
|
|
set_result.add('key3')
|
2015-11-14 18:04:49 +00:00
|
|
|
instance.print_set_2(set_result)
|
|
|
|
|
2015-07-05 18:05:44 +00:00
|
|
|
list_result = instance.get_list()
|
|
|
|
list_result.append('value2')
|
|
|
|
instance.print_list(list_result)
|
|
|
|
|
|
|
|
list_result = instance.get_list_2()
|
|
|
|
list_result.append('value2')
|
|
|
|
instance.print_list_2(list_result)
|
|
|
|
|
|
|
|
try:
|
|
|
|
instance.throw_exception()
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
|
|
|
|
print(instance.pair_passthrough((True, "test")))
|
|
|
|
print(instance.tuple_passthrough((True, "test", 5)))
|
|
|
|
|
|
|
|
print(pydoc.render_doc(Example2, "Help on %s"))
|