1
2
3
4
5
6
7
8
9
10
11
12
13 """
14 Visitor - Visits an error_handler composite
15 """
16
18 """
19 """
20
22 """
23 Params: fd - target file
24 """
25 pass
26
28 """
29 @param errh: Error handler
30 @type errh: L{error_handler.err_handler}
31 """
32 pass
33
34 - def visit_root_post(self, errh):
35 """
36 @param errh: Error handler
37 @type errh: L{error_handler.err_handler}
38 """
39 pass
40
43
44 - def visit_isa_post(self, err_isa):
45 """
46 Params: err_isa - error_isa instance
47 """
48 pass
49
52
53 - def visit_gs_post(self, err_gs):
54 """
55 Params: err_gs - error_gs instance
56 """
57 pass
58
61
62 - def visit_st_post(self, err_st):
63 """
64 Params: err_st - error_st instance
65 """
66 pass
67
69 """
70 Params: err_seg - error_seg instance
71 """
72 pass
73
75 """
76 Params: err_ele - error_ele instance
77 """
78 pass
79