()
| 282 | |
| 283 | |
| 284 | def current_process(): |
| 285 | try: |
| 286 | from billiard import process |
| 287 | except ImportError: |
| 288 | pass |
| 289 | else: |
| 290 | return process.current_process() |
| 291 | |
| 292 | |
| 293 | def current_process_index(base=1): |
no outgoing calls
searching dependent graphs…