From 38ac54038c96d339f55a66af6ad8da20320ff411 Mon Sep 17 00:00:00 2001 From: Erik Bray Date: Fri, 20 May 2011 16:08:26 -0400 Subject: Adds some missing bits to the sandbox fix--need to actually save/restore the pkg_resources state. --HG-- branch : distribute extra : rebase_source : 961ca56f30a6aabb5d24eff3cabb527d1be93ae4 --- pkg_resources.py | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg_resources.py') diff --git a/pkg_resources.py b/pkg_resources.py index d704aad5..636d6ff9 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -710,6 +710,7 @@ class WorkingSet(object): def __setstate__(self, (entries, keys, by_key, callbacks)): self.entries = entries[:] + self.entry_keys = keys.copy() self.by_key = by_key.copy() self.callbacks = callbacks[:] -- cgit v1.2.1