(s:str)
| 153 | |
| 154 | @functools.cache |
| 155 | def to_function_name(s:str): return ''.join([c if c in (string.ascii_letters+string.digits+'_') else f'{ord(c):02X}' for c in ansistrip(s)]) |
| 156 | @overload |
| 157 | def getenv(key:str) -> int: ... |
| 158 | @overload |
no test coverage detected
searching dependent graphs…