Huw Jones <h...@huwcbjones.co.uk> added the comment:

The workaround I am using is to manually encode/decode.

For the MWE, this means encoding on the creation side
```
shared_list = smm.ShareableList([s.encode() for s in strings])
```
and decoding before using the string
```
for enc_str in shared_list:
   string = enc_str.decode()
```

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue44170>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to