[issue35248] RawArray causes FileNotFoundError at cleanup

2018-11-14 Thread Mathieu Lamarre
Mathieu Lamarre added the comment: To repro, the temp directory returned by tempfile must be a network mount to reproduce this error. I have this on server with minimal disk space in /home and TMPDIR points to CIFS mounted volume. So maybe can only be reproduced if shutils operations on the

[issue35248] RawArray causes FileNotFoundError at cleanup

2018-11-14 Thread Mathieu Lamarre
New submission from Mathieu Lamarre : Running: from multiprocessing.sharedctypes import RawArray from ctypes import c_uint32 if __name__ == '__main__': shared_array = RawArray(c_uint32, 1500) Causes: Traceback (most recent call last): File "/home/ava/miniconda3/envs/ava36/lib/python3.6/m

[issue35248] RawArray causes FileNotFoundError at cleanup

2018-11-14 Thread Mathieu Lamarre
Change by Mathieu Lamarre : -- components: Library (Lib) nosy: Mathieu Lamarre priority: normal severity: normal status: open title: RawArray causes FileNotFoundError at cleanup type: behavior versions: Python 3.6 ___ Python tracker