(uid)
| 13 | |
| 14 | |
| 15 | def _getpwuid(uid): |
| 16 | try: |
| 17 | import pwd |
| 18 | return pwd.getpwuid(uid)[0] |
| 19 | except (ImportError, LookupError): |
| 20 | return f'uid {uid}' |
| 21 | |
| 22 | |
| 23 | class NetrcParseError(Exception): |
no outgoing calls
no test coverage detected
searching dependent graphs…