This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: import suds help( suds ) fails
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: Trundle, amaury.forgeotdarc, ezio.melotti, pjb
Priority: normal Keywords:

Created on 2009-01-21 01:36 by pjb, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
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.
msg184118 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-03-13 23:10
I tried to zip a python module that contained a couple of functions, and after importing it as described in http://docs.python.org/2/library/zipimport.html#examples, I was able to use the inspect module to inspect the module and its functions without encountering any problem.
I'm therefore going to close this as out of date.
History
Date User Action Args
2022-04-11 14:56:44adminsetgithub: 49267
2013-03-13 23:10:45ezio.melottisetstatus: open -> closed

type: behavior

nosy: + ezio.melotti
messages: + msg184118
resolution: out of date
stage: resolved
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