Installation directory for extensions on Unix

2009-02-06 Thread Osmo Salomaa
and using __import__ on the specified files, so the installation directory does not need to be anywhere near $PYTHONPATH. -- Osmo Salomaa otsal...@cc.hut.fi -- http://mail.python.org/mailman/listinfo/python-list

Re: py.test and test coverage analysis ?

2008-04-06 Thread Osmo Salomaa
of the second command useful. #!/bin/sh coverage.py -x $(which py.test) $@ || exit 1 coverage.py -rm -o /usr,/var rm -f .coverage -- Osmo Salomaa [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

Re: How to delete PyGTK ComboBox entries?

2007-02-26 Thread Osmo Salomaa
to None before making changes to it speeds things at least in the case of tree views. I'm not sure if it does much with combo boxes. If you experince speed issues with combo boxes you're either doing something very wrong or you have so many entries that you ought to be using a tree view instead. -- Osmo