On Fri, Apr 24, 2009 at 04:55:13PM +0000, Rob Judd wrote:
> The version of Python I'm using is available at
> http://www.bebits.com/app/4232 and has been used by the BeOS community
> since 2005, so it's "ancient and justified". I also stated above that
> the files being called by the tests (select.py and time.py) are missing
> from this version, and that they are missing from the Python source
> tree. I have also downloaded and unpacked the sources for Python-2.6.2
> and Python-3.1a2 and the files are not contained in those packages. So,
> I think we can safely eliminate my Python installation as the problem.
I'm not convinced you can rule out a problem with your Python setup
that easily.
On my system (OpenBSD), those modules are object files, not python files:
$ pkg_info -L python | grep time
/usr/local/include/python2.5/datetime.h
/usr/local/include/python2.5/timefuncs.h
/usr/local/lib/python2.5/_strptime.py
/usr/local/lib/python2.5/_strptime.pyc
/usr/local/lib/python2.5/_strptime.pyo
/usr/local/lib/python2.5/lib-dynload/datetime.so
/usr/local/lib/python2.5/lib-dynload/time.so <-----
/usr/local/lib/python2.5/timeit.py
/usr/local/lib/python2.5/timeit.pyc
/usr/local/lib/python2.5/timeit.pyo
$ pkg_info -L python | grep select
/usr/local/lib/python2.5/lib-dynload/select.so
$ python --version
Python 2.5.4
Stefan
Received on 2009-04-23 13:36:07 CEST