example2.py 1.56 KB
Newer Older
1
2
#!/usr/bin/env python
from __future__ import print_function
Wenzel Jakob's avatar
Wenzel Jakob committed
3
4
5
import sys, pydoc
sys.path.append('.')

6
import example
Wenzel Jakob's avatar
Wenzel Jakob committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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)

33
set_result = instance.get_set()
34
set_result.add('key3')
35
36
37
instance.print_set(set_result)

set_result = instance.get_set2()
38
set_result.add('key3')
39
40
instance.print_set_2(set_result)

Wenzel Jakob's avatar
Wenzel Jakob committed
41
42
43
44
45
46
47
48
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)

49
50
51
52
array_result = instance.get_array()
print(array_result)
instance.print_array(array_result)

Wenzel Jakob's avatar
Wenzel Jakob committed
53
54
55
56
57
58
59
60
61
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"))
62
63
64
65
66
67

print("__name__(example) = %s" % example.__name__)
print("__name__(example.Example2) = %s" % Example2.__name__)
print("__module__(example.Example2) = %s" % Example2.__module__)
print("__name__(example.Example2.get_set) = %s" % Example2.get_set.__name__)
print("__module__(example.Example2.get_set) = %s" % Example2.get_set.__module__)