(s, dotted=False)
| 153 | which = shutil.which |
| 154 | |
| 155 | def isidentifier(s, dotted=False): |
| 156 | if dotted: |
| 157 | return all(isidentifier(a) for a in s.split(".")) |
| 158 | return s.isidentifier() |
| 159 | |
| 160 | getcwd = os.getcwd |
| 161 |
nothing calls this directly
no outgoing calls
no test coverage detected