I found another call to a lib that i can't found. This time i call
"locale.py" from a function, and this one calls "_locale".
The exact sentence I use is "locale.setlocale(locale.LC_ALL,"")".
Then "locale.py" tries this: "from _locale import *".
And python1.5 answers:
File "/usr/lib/python1.5/locale.py/", line 4, in ?
from _locale import *
Import Error: No module named _locale
thanks for your help
i hope soon i'll be able to answer some questions too
Then "locale.py" tries this: "from _locale import *".
And python1.5 answers:
File "/usr/lib/python1.5/locale.py/", line 4, in ?
from _locale import *
Import Error: No module named _locale
The locale module is not part of wxPython but of Python itself, and the
_locale module is an extension module (C code, not Python) that must be
compiled for your architecture. Apparently your Python was built without
it. If you built it yourself you can enable it in the Python/Modules/Setup
file and then rebuild and install Python.