1import secret
2import inspect
3
4
5def get_object_functions(object_):
6 functions = [attr_name
7 for attr_name in dir(object_)
8 if str(type(getattr(object_,attr_name)))
9 in ("<class 'function'>","<class 'method'>")]
10 return functions
11
12def is_interesting_method(method):
13 if len("{method}".split(".")[-1]) != 1:
14 return False
15 try:
16 method()
17 except TypeError:
18 print("Опаааааа, тука има нещо нередно.")
19 return True
20 except BaseException:
21 print("Опаааааа, BaseException")
22 return True
23
24 if lambda x: method(x) == x**2 if x % 2 == 0 else 0:
25 return True
26 if isinstance(inspect.getattr_static("{method}".split(".")[-2], "method"), staticmethod):
27 return True
28 else:
29 return lambda x,y: method(left = x, right = y) == x + y
30
31def following_clues(faculty_number):
32 list_of_clues =[]
33 list_ot_interesting_methods = []
34
35 obj = secret
36 clue = True
37 while clue == True:
38 for element in dir(obj):
39 if "clue" in element:
40 list_of_clues.append(getattr(secret, element))
41 obj = getattr(secret, element)
42 continue
43
44 clue = False
45
46 for obj in list_of_clues:
47 methods_in_object = get_object_functions(obj)
48 print(methods_in_object)
49 for symbol in faculty_number:
50 if symbol in methods_in_object:
51 list_ot_interesting_methods.append(obj)
52
53 return list_ot_interesting_methods
54
55def methodify():
56 faculty_number = "FN31560"
57 interesting_methods = following_clues(faculty_number)
58
59 for method in interesting_methods:
60 if not is_interesting_method(method):
61 return None
62
63 return tuple(interesting_methods)
64
65
66
67
68
69
70
71
72
73
['F']
['2', 'F']
['F']
F
Stdout:
['F']
['2', 'F']
['F']
======================================================================
FAIL: test_metodify (test.TestMethodify)
Test metodify function.
----------------------------------------------------------------------
Traceback (most recent call last):
File "/tmp/test.py", line 12, in test_metodify
self.assertIn(methodify(), _RESULTS.keys())
AssertionError: None not found in dict_keys([(<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_2 at 0x7f1379562dd0>, <function method_3 at 0x7f1379562e60>, <function method_4 at 0x7f1379562ef0>, <function method_5 at 0x7f1379562f80>, <function method_6 at 0x7f1379563010>, <function method_7 at 0x7f13795630a0>, <function method_8 at 0x7f1379563130>, <function method_9 at 0x7f13795631c0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_2 at 0x7f1379562dd0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_4 at 0x7f1379562ef0>, <function method_4 at 0x7f1379562ef0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_5 at 0x7f1379562f80>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_9 at 0x7f13795631c0>, <function method_5 at 0x7f1379562f80>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_5 at 0x7f1379562f80>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_8 at 0x7f1379563130>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_4 at 0x7f1379562ef0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_3 at 0x7f1379562e60>, <function method_1 at 0x7f1379562d40>, <function method_5 at 0x7f1379562f80>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_3 at 0x7f1379562e60>, <function method_1 at 0x7f1379562d40>, <function method_6 at 0x7f1379563010>, <function method_5 at 0x7f1379562f80>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_3 at 0x7f1379562e60>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_4 at 0x7f1379562ef0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_3 at 0x7f1379562e60>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_9 at 0x7f13795631c0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_2 at 0x7f1379562dd0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_4 at 0x7f1379562ef0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_9 at 0x7f13795631c0>, <function method_7 at 0x7f13795630a0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_3 at 0x7f1379562e60>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_4 at 0x7f1379562ef0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_8 at 0x7f1379563130>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_5 at 0x7f1379562f80>, <function method_5 at 0x7f1379562f80>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_1 at 0x7f1379562d40>, <function method_5 at 0x7f1379562f80>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_5 at 0x7f1379562f80>, <function method_5 at 0x7f1379562f80>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_4 at 0x7f1379562ef0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_3 at 0x7f1379562e60>, <function method_1 at 0x7f1379562d40>, <function method_5 at 0x7f1379562f80>, <function method_9 at 0x7f13795631c0>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_9 at 0x7f13795631c0>, <function method_7 at 0x7f13795630a0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_3 at 0x7f1379562e60>, <function method_7 at 0x7f13795630a0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_5 at 0x7f1379562f80>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_8 at 0x7f1379563130>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_6 at 0x7f1379563010>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_7 at 0x7f13795630a0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_9 at 0x7f13795631c0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_1 at 0x7f1379562d40>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_4 at 0x7f1379562ef0>, <function method_9 at 0x7f13795631c0>, <function method_3 at 0x7f1379562e60>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_3 at 0x7f1379562e60>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_7 at 0x7f13795630a0>, <function method_5 at 0x7f1379562f80>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_7 at 0x7f13795630a0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_5 at 0x7f1379562f80>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_3 at 0x7f1379562e60>, <function method_9 at 0x7f13795631c0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_3 at 0x7f1379562e60>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_4 at 0x7f1379562ef0>, <function method_9 at 0x7f13795631c0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_8 at 0x7f1379563130>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_2 at 0x7f1379562dd0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_6 at 0x7f1379563010>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_7 at 0x7f13795630a0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_1 at 0x7f1379562d40>, <function method_6 at 0x7f1379563010>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_5 at 0x7f1379562f80>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_6 at 0x7f1379563010>, <function method_7 at 0x7f13795630a0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_4 at 0x7f1379562ef0>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_5 at 0x7f1379562f80>, <function method_1 at 0x7f1379562d40>, <function method_3 at 0x7f1379562e60>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_7 at 0x7f13795630a0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_4 at 0x7f1379562ef0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_1 at 0x7f1379562d40>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_4 at 0x7f1379562ef0>, <function method_6 at 0x7f1379563010>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_0 at 0x7f1379562cb0>, <function method_4 at 0x7f1379562ef0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_5 at 0x7f1379562f80>, <function method_3 at 0x7f1379562e60>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_2 at 0x7f1379562dd0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_1 at 0x7f1379562d40>, <function method_6 at 0x7f1379563010>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_1 at 0x7f1379562d40>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_4 at 0x7f1379562ef0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_7 at 0x7f13795630a0>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_9 at 0x7f13795631c0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_9 at 0x7f13795631c0>, <function method_9 at 0x7f13795631c0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_4 at 0x7f1379562ef0>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_5 at 0x7f1379562f80>, <function method_9 at 0x7f13795631c0>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_2 at 0x7f1379562dd0>, <function method_1 at 0x7f1379562d40>, <function method_3 at 0x7f1379562e60>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_5 at 0x7f1379562f80>, <function method_6 at 0x7f1379563010>, <function method_8 at 0x7f1379563130>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_1 at 0x7f1379562d40>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_3 at 0x7f1379562e60>, <function method_0 at 0x7f1379562cb0>, <function method_7 at 0x7f13795630a0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_3 at 0x7f1379562e60>, <function method_4 at 0x7f1379562ef0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_4 at 0x7f1379562ef0>, <function method_3 at 0x7f1379562e60>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_5 at 0x7f1379562f80>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_7 at 0x7f13795630a0>, <function method_8 at 0x7f1379563130>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_0 at 0x7f1379562cb0>, <function method_7 at 0x7f13795630a0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_2 at 0x7f1379562dd0>, <function method_1 at 0x7f1379562d40>, <function method_5 at 0x7f1379562f80>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_5 at 0x7f1379562f80>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_3 at 0x7f1379562e60>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_9 at 0x7f13795631c0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_8 at 0x7f1379563130>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_4 at 0x7f1379562ef0>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_7 at 0x7f13795630a0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_5 at 0x7f1379562f80>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_8 at 0x7f1379563130>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_9 at 0x7f13795631c0>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_2 at 0x7f1379562dd0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_2 at 0x7f1379562dd0>, <function method_7 at 0x7f13795630a0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_9 at 0x7f13795631c0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_2 at 0x7f1379562dd0>, <function method_3 at 0x7f1379562e60>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_4 at 0x7f1379562ef0>, <function method_0 at 0x7f1379562cb0>, <function method_9 at 0x7f13795631c0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_8 at 0x7f1379563130>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_2 at 0x7f1379562dd0>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_8 at 0x7f1379563130>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_4 at 0x7f1379562ef0>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_1 at 0x7f1379562d40>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_3 at 0x7f1379562e60>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_5 at 0x7f1379562f80>, <function method_7 at 0x7f13795630a0>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_9 at 0x7f13795631c0>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_5 at 0x7f1379562f80>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_7 at 0x7f13795630a0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_8 at 0x7f1379563130>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_8 at 0x7f1379563130>, <function method_5 at 0x7f1379562f80>, <function method_5 at 0x7f1379562f80>, <function method_3 at 0x7f1379562e60>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_1 at 0x7f1379562d40>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_7 at 0x7f13795630a0>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_7 at 0x7f13795630a0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_9 at 0x7f13795631c0>, <function method_8 at 0x7f1379563130>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_4 at 0x7f1379562ef0>, <function method_2 at 0x7f1379562dd0>, <function method_6 at 0x7f1379563010>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_7 at 0x7f13795630a0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_7 at 0x7f13795630a0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_9 at 0x7f13795631c0>, <function method_2 at 0x7f1379562dd0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_2 at 0x7f1379562dd0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_0 at 0x7f1379562cb0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_7 at 0x7f13795630a0>, <function method_1 at 0x7f1379562d40>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_5 at 0x7f1379562f80>, <function method_1 at 0x7f1379562d40>, <function method_4 at 0x7f1379562ef0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_0 at 0x7f1379562cb0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_3 at 0x7f1379562e60>, <function method_4 at 0x7f1379562ef0>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>, <function method_5 at 0x7f1379562f80>, <function method_6 at 0x7f1379563010>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_2 at 0x7f1379562dd0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_9 at 0x7f13795631c0>, <function method_6 at 0x7f1379563010>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_3 at 0x7f1379562e60>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_1 at 0x7f1379562d40>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_1 at 0x7f1379562d40>, <function method_8 at 0x7f1379563130>, <function method_7 at 0x7f13795630a0>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_5 at 0x7f1379562f80>, <function method_2 at 0x7f1379562dd0>, <function method_6 at 0x7f1379563010>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_7 at 0x7f13795630a0>, <function method_M at 0x7f1379562b90>, <function method_I at 0x7f1379562c20>, <function method_0 at 0x7f1379562cb0>, <function method_6 at 0x7f1379563010>, <function method_0 at 0x7f1379562cb0>, <function method_0 at 0x7f1379562cb0>, <function method_2 at 0x7f1379562dd0>, <function method_1 at 0x7f1379562d40>, <function method_8 at 0x7f1379563130>), (<function method_F at 0x7f1379562a70>, <function method_N at 0x7f1379562b00>, <function method_6 at 0x7f1379563010>, <function method_2 at 0x7f1379562dd0>, <function method_4 at 0x7f1379562ef0>, <function method_8 at 0x7f1379563130>, <function method_7 at 0x7f13795630a0>)])
Stdout:
['F']
['2', 'F']
['F']
----------------------------------------------------------------------
Ran 1 test in 0.000s
FAILED (failures=1)