[issue34559] multiprocessing AuthenticationError when nesting with non-default authkey

2018-09-20 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue34559] multiprocessing AuthenticationError when nesting with non-default authkey

2018-08-31 Thread natedogith1
New submission from natedogith1 : If you nest shared objects on a manager that doesn't use the default authkey, you get an AuthenticationError. import multiprocessing.managers a = multiprocessing.managers.SyncManager(authkey=b'') a.start() b = a.list() b.append(a.list()) _ = b[0] -- c