* Bug fix: PEX-INFO values were overridden by environment `Variables`
with default values that were not explicitly set in the environment.
Fixes 135.
* Bug fix: Since
[69649c1](https://github.com/pex-tool/pex/commit/69649c1) we have
been un-patching the side effects of `sys.modules` after
`PEX.execute`. This takes all modules imported during the PEX
lifecycle and sets all their attributes to `None`. Unfortunately,
`sys.excepthook`, `atexit` and `__del__` may still try to operate
using these tainted modules, causing exceptions on interpreter
teardown. This reverts just the `sys` un-patching so that the
above-mentioned teardown hooks behave more predictably.