(e: any)
| 2316 | }; |
| 2317 | |
| 2318 | function isPythonError(e: any): e is PythonError { |
| 2319 | return ( |
| 2320 | e && |
| 2321 | typeof e === "object" && |
| 2322 | e.constructor && |
| 2323 | e.constructor.name === "PythonError" |
| 2324 | ); |
| 2325 | } |
| 2326 | const PyProxySequenceHandlers = { |
| 2327 | isExtensible(): boolean { |
| 2328 | return true; |
no outgoing calls
no test coverage detected
searching dependent graphs…