This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author huwcbjones
Recipients huwcbjones
Date 2021-05-18.11:18:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1621336706.43.0.504302111944.issue44170@roundup.psfhosted.org>
In-reply-to
Content
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()
```
History
Date User Action Args
2021-05-18 11:18:26huwcbjonessetrecipients: + huwcbjones
2021-05-18 11:18:26huwcbjonessetmessageid: <1621336706.43.0.504302111944.issue44170@roundup.psfhosted.org>
2021-05-18 11:18:26huwcbjoneslinkissue44170 messages
2021-05-18 11:18:26huwcbjonescreate