6 """ |
6 """ |
7 Module implementing some graphical utility functions. |
7 Module implementing some graphical utility functions. |
8 """ |
8 """ |
9 |
9 |
10 |
10 |
11 from __future__ import unicode_literals # __IGNORE_WARNING__ |
11 from __future__ import unicode_literals |
12 |
12 |
13 |
13 |
14 class RecursionError(OverflowError, ValueError): |
14 class RecursionError(OverflowError, ValueError): |
15 """ |
15 """ |
16 Unable to calculate result because of recursive structure. |
16 Unable to calculate result because of recursive structure. |