Re: [Python-Dev] multi-version parallel-installed modules

2010-08-18 Thread M.-A. Lemburg
Michael Foord wrote: > On 18/08/2010 15:34, Neal Becker wrote: >> Is there any proposal to accommodate having parallel-installed multiple >> versions of modules? You can easily implement such a setup by placing the module versions into a separate dir and then adding the right version dir to you sy

Re: [Python-Dev] multi-version parallel-installed modules

2010-08-18 Thread Michael Foord
On 18/08/2010 15:34, Neal Becker wrote: Is there any proposal to accommodate having parallel-installed multiple versions of modules? I have client code in multiple projects using version x.y of a C-compiled module A. I want to test a new version x.z of module A, but all client software needs to

[Python-Dev] multi-version parallel-installed modules

2010-08-18 Thread Neal Becker
Is there any proposal to accommodate having parallel-installed multiple versions of modules? I have client code in multiple projects using version x.y of a C-compiled module A. I want to test a new version x.z of module A, but all client software needs to be recompiled against the new version.