[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

[issue33867] Module dicts are wiped on module garbage collection

2018-06-14 Thread natedogith1
New submission from natedogith1 : When a module is garbage collected, it fills it's __dict__ with None. issue19255 and issue18214 seem to suggest that this was fixed, along with github pull request 7140 (commit 196b0925ca55bf22ffbb97733cff3e63d4fb6e18). However, this still seems