[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

[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

[issue27544] documentiona of dict view types

2016-07-17 Thread hannah
Changes by hannah : -- title: Document checking dict types -> documentiona of dict view types ___ Python tracker <http://bugs.python.org/issue27544> ___ ___ Py

[issue27544] Document checking dict types

2016-07-17 Thread hannah
New submission from hannah: While there is documentation that dict.keys(), dict.values(), and dict.items() are now view objects(https://docs.python.org/3/library/stdtypes.html#dict-views), there's no mention dictviews, dict_keys, dict_values, and dict_items not being built-ins. Th