[python-win32] sys.path for windows multiple pythons

2017-03-22 Thread Robin Becker
I have many different pythons installed on my windows 7 development machine. The default python which I use is installed in c:\python27 and I have c:\python27 & c:\python27\scripts in my execution path. However, when I run various other pythons I see the default python path appearing in their

Re: [python-win32] sys.path for windows multiple pythons

2017-03-22 Thread David Rock
> On Mar 22, 2017, at 09:48, Robin Becker wrote: > > do I get extra stuff from c:\Python27 because those folders are in my > execution PATH variable; Yes; that’s how Windows works. > seems a bit dodgy to have those folders ending up in a python 3.6 environment. Python isn’t going to replace

Re: [python-win32] sys.path for windows multiple pythons

2017-03-22 Thread Zachary Ware
On Wed, Mar 22, 2017 at 10:14 AM, David Rock wrote: > >> On Mar 22, 2017, at 09:48, Robin Becker wrote: >> >> do I get extra stuff from c:\Python27 because those folders are in my >> execution PATH variable; > > Yes; that’s how Windows works. No; that's not how Python works. Python does not ca

Re: [python-win32] sys.path for windows multiple pythons

2017-03-22 Thread Robin Becker
On 22/03/2017 15:27, Zachary Ware wrote: On Wed, Mar 22, 2017 at 10:14 AM, David Rock wrote: On Mar 22, 2017, at 09:48, Robin Becker wrote: do I get extra stuff from c:\Python27 because those folders are in my execution PATH variable; Yes; that’s how Windows works. No; that's not how P