(s: str)
| 171 | |
| 172 | |
| 173 | def isidentifier(s: str) -> bool: |
| 174 | warn( |
| 175 | "traitlets.traitlets.isidentifier(s) is deprecated since traitlets 5.14.4 Use `s.isidentifier()`.", |
| 176 | DeprecationWarning, |
| 177 | stacklevel=2, |
| 178 | ) |
| 179 | return s.isidentifier() |
| 180 | |
| 181 | |
| 182 | def _safe_literal_eval(s: str) -> t.Any: |
nothing calls this directly
no test coverage detected
searching dependent graphs…