[issue43191] Shared Memory for array of object

2021-07-07 Thread Andrei Kulakov
Change by Andrei Kulakov : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue43191] Shared Memory for array of object

2021-02-10 Thread Eric V. Smith
Eric V. Smith added the comment: If you could demonstrate the problem without numpy, then we could probably help you here. I don't know much about numpy. -- ___ Python tracker __

[issue43191] Shared Memory for array of object

2021-02-10 Thread Hannah Busshoff
Hannah Busshoff added the comment: Hi Eric, Thanks for your quick reply. The numpy operation was only an attempt to serialize the nested list and make it available as a shared memory object. As is written in the documentation, the SharedList() does not take nested lists as an input. I po

[issue43191] Shared Memory for array of object

2021-02-10 Thread Eric V. Smith
Eric V. Smith added the comment: This looks like a numpy usage question, not a python bug. I suggest you ask on Stackoverflow or a numpy user forum. -- nosy: +eric.smith ___ Python tracker _

[issue43191] Shared Memory for array of object

2021-02-10 Thread Hannah Busshoff
New submission from Hannah Busshoff : Dear all, When seeking to put an object of type -- Array of object -- into shared memory when doing multiprocessing via starmap, I am encountering problems -- in that sense that the program does not finish running but apparently gets stuck. I attached