Re: [Pythonmac-SIG] avoiding system's "easy-install.pth" with custom distribution

2013-09-13 Thread Nat Echols
On Tue, Sep 10, 2013 at 11:16 PM, Ned Deily wrote: > The behavior is the result of a feature added in 2.7 for Issue4865 which > appends the site-packages directory for the Apple-supplied system Python > to sys.path of a Python framework build. With hindsight, I don't think > this was a good idea

Re: [Pythonmac-SIG] avoiding system's "easy-install.pth" with custom distribution

2013-09-12 Thread Ronald Oussoren
On 11 Sep, 2013, at 8:16, Ned Deily wrote: > In article > , > Nat Echols wrote: >> I'm distributing a large cross-platform Python-based application, for which >> we bundle Python 2.7 and a number of dependencies (wxPython, matplotlib, >> etc.). We've tried to make it as self-contained as poss

Re: [Pythonmac-SIG] avoiding system's "easy-install.pth" with custom distribution

2013-09-11 Thread Chris Barker
On Tue, Sep 10, 2013 at 11:16 PM, Ned Deily wrote: > The behavior is the result of a feature added in 2.7 for Issue4865 which > appends the site-packages directory for the Apple-supplied system Python > to sys.path of a Python framework build. With hindsight, I don't think > this was a good idea

Re: [Pythonmac-SIG] avoiding system's "easy-install.pth" with custom distribution

2013-09-10 Thread Ned Deily
In article , Nat Echols wrote: > I'm distributing a large cross-platform Python-based application, for which > we bundle Python 2.7 and a number of dependencies (wxPython, matplotlib, > etc.). We've tried to make it as self-contained as possible, to prevent > either a) polluting the user's envi

[Pythonmac-SIG] avoiding system's "easy-install.pth" with custom distribution

2013-09-10 Thread Nat Echols
I'm distributing a large cross-platform Python-based application, for which we bundle Python 2.7 and a number of dependencies (wxPython, matplotlib, etc.). We've tried to make it as self-contained as possible, to prevent either a) polluting the user's environment and potentially breaking other pro