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 natedogith1
Recipients natedogith1
Date 2018-08-31.22:16:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1535753812.06.0.56676864532.issue34559@psf.upfronthosting.co.za>
In-reply-to
Content
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]
History
Date User Action Args
2018-08-31 22:16:52natedogith1setrecipients: + natedogith1
2018-08-31 22:16:52natedogith1setmessageid: <1535753812.06.0.56676864532.issue34559@psf.upfronthosting.co.za>
2018-08-31 22:16:52natedogith1linkissue34559 messages
2018-08-31 22:16:52natedogith1create