File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -453,16 +453,16 @@ process which created it.
453
453
... return x*x
454
454
...
455
455
>>> with p:
456
- ... p.map(f, [1,2,3])
456
+ ... p.map(f, [1,2,3])
457
457
Process PoolWorker-1:
458
458
Process PoolWorker-2:
459
459
Process PoolWorker-3:
460
460
Traceback (most recent call last):
461
461
Traceback (most recent call last):
462
462
Traceback (most recent call last):
463
- AttributeError: 'module' object has no attribute 'f'
464
- AttributeError: 'module' object has no attribute 'f'
465
- AttributeError: 'module' object has no attribute 'f'
463
+ AttributeError: Can't get attribute 'f' on <module '__main__' (built-in)>
464
+ AttributeError: Can't get attribute 'f' on <module '__main__' (built-in)>
465
+ AttributeError: Can't get attribute 'f' on <module '__main__' (built-in)>
466
466
467
467
(If you try this it will actually output three full tracebacks
468
468
interleaved in a semi-random fashion, and then you may have to
You can’t perform that action at this time.
0 commit comments