> I'm guessing I need to configure cvs to copy files to both locations 
> whenever I commit. Does that sound right? Is there a better way I'm not 
> thinking of?

If the set of files doesn't change too often, you can use symlinks.
That's how Debian currently installs Python packages for multiple
versions on a single system.

Specifically, put the source code into /net/source/python/foo/*.py.
Then, on each system, put symlinks to all .py files into
lib/site-packages/foo. Then Python will place the .pyc files next
to the symlinks, not next to the actual .py files.

HTH,
Martin
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to