(s)
| 2285 | |
| 2286 | @lru_cache(maxsize=2048) |
| 2287 | def is_valid_function_name(s): |
| 2288 | return ( |
| 2289 | s is not None |
| 2290 | and isinstance(s, (str, bytes, bytearray)) |
| 2291 | and all(c in allowed_function_name for c in set(s)) |
| 2292 | ) |
| 2293 | |
| 2294 | |
| 2295 | class PE: |
no outgoing calls
no test coverage detected