Tagged Questions

0
votes
0answers
40 views

Jython 2.5.1, Eclipse & os.path

I have imported the Jython2.5.1 standalone jar into my build path in Eclipse. Whenever I run any Jython code from within Eclipse, that uses the os.path module, the app barfs: 'Exe …
0
votes
0answers
31 views

ImportError: No module named smb

PySamba is a Python library that provides a full wrapper for the Samba CLI library provided with samba-3.0.24. It includes a Python module that hides the complexity of the lower la …
1
vote
0answers
43 views

Miscellaneous import errors with Djapian

After installing Djapian ten different ways and following 5 completely different tutorials, it's time to ask for help. Ok, the vanilla way: I go to http://code.google.com/p/djapia …
0
votes
1answer
56 views

unable to import libxml2mod from the python script

File "/usr/local/lib/python2.5/site-packages/libxml2.py", line 1, in <module> import libxml2mod ImportError: /usr/local/lib/python2.5/site-packages/libxml2mod.so: …
3
votes
1answer
73 views

Why does import of ctypes raise ImportError?

Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import cty …
1
vote
2answers
92 views

Testing for ImportErrors in Python

We're having a real problem with people checking in code that doesn't work because something's been refactored. Admittedly, this is partly because our developers don't really have …