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 snwokenk
Recipients snwokenk, yselivanov
Date 2017-11-10.16:33:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510331606.87.0.213398074469.issue32003@psf.upfronthosting.co.za>
In-reply-to
Content
1st sequence:

arr = multiprocessing.Array("b", 1)  # byte type

arr[0] = 's'.encode()

print(arr[:]) 

result is [115]
----
2nd sequence:
arr = multiprocessing.Array("c", 1)  # character type

arr[0] = 's'.encode()

print(arr[:]) 

result is b's'

----------
Wrong values for given types.
History
Date User Action Args
2017-11-10 16:33:26snwokenksetrecipients: + snwokenk, yselivanov
2017-11-10 16:33:26snwokenksetmessageid: <1510331606.87.0.213398074469.issue32003@psf.upfronthosting.co.za>
2017-11-10 16:33:26snwokenklinkissue32003 messages
2017-11-10 16:33:26snwokenkcreate