[issue21849] Fix multiprocessing for non-ascii data

2015-02-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: -Fix unicodeless build of Python resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21849

[issue21849] Fix multiprocessing for non-ascii data

2015-02-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset a4a3a8b3f37f by Serhiy Storchaka in branch '2.7': Issue #21849: Fixed xmlrpclib serialization of non-ASCII unicode strings in https://hg.python.org/cpython/rev/a4a3a8b3f37f New changeset 908533d5a427 by Serhiy Storchaka in branch '3.4': Issue

[issue21849] Fix multiprocessing for non-ascii data

2014-06-26 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21849 ___ ___ Python-bugs-list

[issue21849] Fix multiprocessing for non-ascii data

2014-06-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Actually there is a bug in the multiprocessing module which makes it fail for non-ascii str and unicode values even in unicode-enabled build. Updated patch fixes it and adds missed tests. -- title: Fix multiprocessing in unicodeless build - Fix