classification
Title: import suds help( suds ) fails
Type: Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Trundle, amaury.forgeotdarc, pjb
Priority: normal Keywords:

Created on 2009-01-21 01:36 by pjb, last changed 2010-10-21 18:05 by Trundle.

Messages (2)
msg80306 - (view) Author: Peter Bobroff (pjb) Date: 2009-01-21 01:36
Python Interactive Shell 2.6.1 r261:67517
easy_install suds  #seemed to succeed
import suds
help( suds ) fails in Python26\lib\inspect.py with index out of range
I fixed the obvious problem, then failed on another. After fixing 3 0r 4 
it worked but there is probably one correct fix to the problem.

A bit beyond my present competence to fix it properly.
msg80310 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2009-01-21 02:01
The inspect module seems to have problems with modules directly imported 
from a zip file.
When installing with "easy_install -Z suds", the problem disappears.
History
Date User Action Args
2010-10-21 18:05:56Trundlesetnosy: + Trundle
2010-10-21 12:20:38georg.brandlsetcomponents: + Library (Lib), - Demos and Tools
2009-01-21 02:01:19amaury.forgeotdarcsetnosy: + amaury.forgeotdarc
messages: + msg80310
2009-01-21 01:36:40pjbcreate