Предизвикателства > Сляпа баба > Решения > Решението на Мария Кукова

Резултати
0 точки от тестове
1 точки от учител

1 точки общо

0 успешни теста
1 неуспешни теста
Код

 1import inspect
 2import secret
 3
 4
 5def is_interesting_name(method_name):
 6    return len(method_name) == 1 and (method_name.isalnum() or method_name.isupper())
 7
 8
 9def is_clue_related(method_name):
10    return 'clue' in method_name
11
12
13def methodify(obj=secret, prefix=""):
14    interesting_methods = []
15    interesting_names = ['F', 'N', 6, 2, 9, 0]
16
17    for attr_name, attr in inspect.getmembers(obj):
18        method_name = prefix + attr_name
19
20        if not is_interesting_name(attr_name) or is_clue_related(method_name):
21            continue
22        if callable(attr):
23            try:
24                attr()
25            except TypeError as te:
26                if "Опаааааа, тука има нещо нередно." in str(te):
27                    if method_name in interesting_names:
28                        interesting_methods.append(method_name)
29            except BaseException:
30                if method_name in interesting_names:
31                    interesting_methods.append(method_name)
32            else:
33                if (attr(2) == 4 or attr(3) == 0 or attr(left="left", right="right") == "leftright") and method_name in interesting_names:
34                    interesting_methods.append(method_name)
35                if hasattr(attr, '__dict__'):
36                    interesting_methods += methodify(attr, prefix=method_name + '.')
37    return tuple(interesting_methods)

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: () not found in dict_keys([(<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_2 at 0x7fd7227c6dd0>, <function method_3 at 0x7fd7227c6e60>, <function method_4 at 0x7fd7227c6ef0>, <function method_5 at 0x7fd7227c6f80>, <function method_6 at 0x7fd7227c7010>, <function method_7 at 0x7fd7227c70a0>, <function method_8 at 0x7fd7227c7130>, <function method_9 at 0x7fd7227c71c0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_2 at 0x7fd7227c6dd0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_4 at 0x7fd7227c6ef0>, <function method_4 at 0x7fd7227c6ef0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_5 at 0x7fd7227c6f80>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_9 at 0x7fd7227c71c0>, <function method_5 at 0x7fd7227c6f80>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_5 at 0x7fd7227c6f80>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_8 at 0x7fd7227c7130>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_4 at 0x7fd7227c6ef0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_3 at 0x7fd7227c6e60>, <function method_1 at 0x7fd7227c6d40>, <function method_5 at 0x7fd7227c6f80>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_3 at 0x7fd7227c6e60>, <function method_1 at 0x7fd7227c6d40>, <function method_6 at 0x7fd7227c7010>, <function method_5 at 0x7fd7227c6f80>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_3 at 0x7fd7227c6e60>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_4 at 0x7fd7227c6ef0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_3 at 0x7fd7227c6e60>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_9 at 0x7fd7227c71c0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_2 at 0x7fd7227c6dd0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_4 at 0x7fd7227c6ef0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_9 at 0x7fd7227c71c0>, <function method_7 at 0x7fd7227c70a0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_3 at 0x7fd7227c6e60>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_4 at 0x7fd7227c6ef0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_8 at 0x7fd7227c7130>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_5 at 0x7fd7227c6f80>, <function method_5 at 0x7fd7227c6f80>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_1 at 0x7fd7227c6d40>, <function method_5 at 0x7fd7227c6f80>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_5 at 0x7fd7227c6f80>, <function method_5 at 0x7fd7227c6f80>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_4 at 0x7fd7227c6ef0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_3 at 0x7fd7227c6e60>, <function method_1 at 0x7fd7227c6d40>, <function method_5 at 0x7fd7227c6f80>, <function method_9 at 0x7fd7227c71c0>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_9 at 0x7fd7227c71c0>, <function method_7 at 0x7fd7227c70a0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_3 at 0x7fd7227c6e60>, <function method_7 at 0x7fd7227c70a0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_5 at 0x7fd7227c6f80>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_8 at 0x7fd7227c7130>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_6 at 0x7fd7227c7010>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_7 at 0x7fd7227c70a0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_9 at 0x7fd7227c71c0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_1 at 0x7fd7227c6d40>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_4 at 0x7fd7227c6ef0>, <function method_9 at 0x7fd7227c71c0>, <function method_3 at 0x7fd7227c6e60>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_3 at 0x7fd7227c6e60>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_7 at 0x7fd7227c70a0>, <function method_5 at 0x7fd7227c6f80>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_7 at 0x7fd7227c70a0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_5 at 0x7fd7227c6f80>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_3 at 0x7fd7227c6e60>, <function method_9 at 0x7fd7227c71c0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_3 at 0x7fd7227c6e60>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_4 at 0x7fd7227c6ef0>, <function method_9 at 0x7fd7227c71c0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_8 at 0x7fd7227c7130>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_2 at 0x7fd7227c6dd0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_6 at 0x7fd7227c7010>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_7 at 0x7fd7227c70a0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_1 at 0x7fd7227c6d40>, <function method_6 at 0x7fd7227c7010>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_5 at 0x7fd7227c6f80>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_6 at 0x7fd7227c7010>, <function method_7 at 0x7fd7227c70a0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_4 at 0x7fd7227c6ef0>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_5 at 0x7fd7227c6f80>, <function method_1 at 0x7fd7227c6d40>, <function method_3 at 0x7fd7227c6e60>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_7 at 0x7fd7227c70a0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_4 at 0x7fd7227c6ef0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_1 at 0x7fd7227c6d40>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_4 at 0x7fd7227c6ef0>, <function method_6 at 0x7fd7227c7010>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_0 at 0x7fd7227c6cb0>, <function method_4 at 0x7fd7227c6ef0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_5 at 0x7fd7227c6f80>, <function method_3 at 0x7fd7227c6e60>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_2 at 0x7fd7227c6dd0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_1 at 0x7fd7227c6d40>, <function method_6 at 0x7fd7227c7010>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_1 at 0x7fd7227c6d40>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_4 at 0x7fd7227c6ef0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_7 at 0x7fd7227c70a0>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_9 at 0x7fd7227c71c0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_9 at 0x7fd7227c71c0>, <function method_9 at 0x7fd7227c71c0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_4 at 0x7fd7227c6ef0>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_5 at 0x7fd7227c6f80>, <function method_9 at 0x7fd7227c71c0>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_2 at 0x7fd7227c6dd0>, <function method_1 at 0x7fd7227c6d40>, <function method_3 at 0x7fd7227c6e60>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_5 at 0x7fd7227c6f80>, <function method_6 at 0x7fd7227c7010>, <function method_8 at 0x7fd7227c7130>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_1 at 0x7fd7227c6d40>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_3 at 0x7fd7227c6e60>, <function method_0 at 0x7fd7227c6cb0>, <function method_7 at 0x7fd7227c70a0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_3 at 0x7fd7227c6e60>, <function method_4 at 0x7fd7227c6ef0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_4 at 0x7fd7227c6ef0>, <function method_3 at 0x7fd7227c6e60>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_5 at 0x7fd7227c6f80>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_7 at 0x7fd7227c70a0>, <function method_8 at 0x7fd7227c7130>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_0 at 0x7fd7227c6cb0>, <function method_7 at 0x7fd7227c70a0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_2 at 0x7fd7227c6dd0>, <function method_1 at 0x7fd7227c6d40>, <function method_5 at 0x7fd7227c6f80>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_5 at 0x7fd7227c6f80>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_3 at 0x7fd7227c6e60>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_9 at 0x7fd7227c71c0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_8 at 0x7fd7227c7130>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_4 at 0x7fd7227c6ef0>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_7 at 0x7fd7227c70a0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_5 at 0x7fd7227c6f80>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_8 at 0x7fd7227c7130>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_9 at 0x7fd7227c71c0>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_2 at 0x7fd7227c6dd0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_2 at 0x7fd7227c6dd0>, <function method_7 at 0x7fd7227c70a0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_9 at 0x7fd7227c71c0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_2 at 0x7fd7227c6dd0>, <function method_3 at 0x7fd7227c6e60>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_4 at 0x7fd7227c6ef0>, <function method_0 at 0x7fd7227c6cb0>, <function method_9 at 0x7fd7227c71c0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_8 at 0x7fd7227c7130>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_2 at 0x7fd7227c6dd0>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_8 at 0x7fd7227c7130>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_4 at 0x7fd7227c6ef0>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_1 at 0x7fd7227c6d40>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_3 at 0x7fd7227c6e60>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_5 at 0x7fd7227c6f80>, <function method_7 at 0x7fd7227c70a0>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_9 at 0x7fd7227c71c0>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_5 at 0x7fd7227c6f80>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_7 at 0x7fd7227c70a0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_8 at 0x7fd7227c7130>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_8 at 0x7fd7227c7130>, <function method_5 at 0x7fd7227c6f80>, <function method_5 at 0x7fd7227c6f80>, <function method_3 at 0x7fd7227c6e60>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_1 at 0x7fd7227c6d40>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_7 at 0x7fd7227c70a0>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_7 at 0x7fd7227c70a0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_9 at 0x7fd7227c71c0>, <function method_8 at 0x7fd7227c7130>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_4 at 0x7fd7227c6ef0>, <function method_2 at 0x7fd7227c6dd0>, <function method_6 at 0x7fd7227c7010>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_7 at 0x7fd7227c70a0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_7 at 0x7fd7227c70a0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_9 at 0x7fd7227c71c0>, <function method_2 at 0x7fd7227c6dd0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_2 at 0x7fd7227c6dd0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_0 at 0x7fd7227c6cb0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_7 at 0x7fd7227c70a0>, <function method_1 at 0x7fd7227c6d40>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_5 at 0x7fd7227c6f80>, <function method_1 at 0x7fd7227c6d40>, <function method_4 at 0x7fd7227c6ef0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_0 at 0x7fd7227c6cb0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_3 at 0x7fd7227c6e60>, <function method_4 at 0x7fd7227c6ef0>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>, <function method_5 at 0x7fd7227c6f80>, <function method_6 at 0x7fd7227c7010>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_2 at 0x7fd7227c6dd0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_9 at 0x7fd7227c71c0>, <function method_6 at 0x7fd7227c7010>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_3 at 0x7fd7227c6e60>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_1 at 0x7fd7227c6d40>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_1 at 0x7fd7227c6d40>, <function method_8 at 0x7fd7227c7130>, <function method_7 at 0x7fd7227c70a0>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_5 at 0x7fd7227c6f80>, <function method_2 at 0x7fd7227c6dd0>, <function method_6 at 0x7fd7227c7010>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_7 at 0x7fd7227c70a0>, <function method_M at 0x7fd7227c6b90>, <function method_I at 0x7fd7227c6c20>, <function method_0 at 0x7fd7227c6cb0>, <function method_6 at 0x7fd7227c7010>, <function method_0 at 0x7fd7227c6cb0>, <function method_0 at 0x7fd7227c6cb0>, <function method_2 at 0x7fd7227c6dd0>, <function method_1 at 0x7fd7227c6d40>, <function method_8 at 0x7fd7227c7130>), (<function method_F at 0x7fd7227c6a70>, <function method_N at 0x7fd7227c6b00>, <function method_6 at 0x7fd7227c7010>, <function method_2 at 0x7fd7227c6dd0>, <function method_4 at 0x7fd7227c6ef0>, <function method_8 at 0x7fd7227c7130>, <function method_7 at 0x7fd7227c70a0>)])

----------------------------------------------------------------------
Ran 1 test in 0.000s

FAILED (failures=1)

Дискусия
История
Това решение има само една версия.