Roy Smith <[email protected]> writes: > In article <[email protected]>, > Paul Rudin <[email protected]> wrote: > >> >> Maybe I'm missing something - but if I want to do this I just mess about >> with sys.path at the top of my python script/program. Always seems to >> work... is there a situation in which it doesn't? > > What if the first import of a module is happening inside some code you > don't have access to?
If you change sys.path first - before you do any imports - then any other imports will surely come from the first thing on sys.path (unless something else you import also changes sys.path)? -- http://mail.python.org/mailman/listinfo/python-list
