()
| 3304 | |
| 3305 | |
| 3306 | def dispatch(): |
| 3307 | setup = SetupHolder.setup |
| 3308 | host = setup["client"] |
| 3309 | port = setup["port"] |
| 3310 | if DISPATCH_APPROACH == DISPATCH_APPROACH_EXISTING_CONNECTION: |
| 3311 | dispatcher = Dispatcher() |
| 3312 | try: |
| 3313 | dispatcher.connect(host, port) |
| 3314 | port = dispatcher.port |
| 3315 | finally: |
| 3316 | dispatcher.close() |
| 3317 | return host, port |
| 3318 | |
| 3319 | |
| 3320 | def settrace_forked(setup_tracing=True): |
no test coverage detected