(process, shell)
| 201 | |
| 202 | @process_task |
| 203 | def breakDownNewEnvInProcess(process, shell): |
| 204 | try: |
| 205 | res = context_objs_exit(shell.user_ns["__exit_stack__"]) |
| 206 | del shell.user_ns["__exit_stack__"] |
| 207 | del shell.user_ns["__env__"] |
| 208 | return res |
| 209 | except: |
| 210 | return False |
| 211 | |
| 212 | |
| 213 | # Tasks that may need to serialize across processes =========================== |
no test coverage detected