Returns a random character from the active character set
()
| 591 | |
| 592 | @staticmethod |
| 593 | def get_char(): |
| 594 | """ |
| 595 | Returns a random character from the active character set |
| 596 | """ |
| 597 | return chars[randint(0, chars_len)] |
| 598 | |
| 599 | @staticmethod |
| 600 | def get_attr(node, above=False): |
no outgoing calls
no test coverage detected