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
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/ava3
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
<ht