Issue 5017: import suds help( suds ) fails (original) (raw)

Issue5017

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:44 admin set github: 49267
2013-03-13 23:10:45 ezio.melotti set status: open -> closedtype: behaviornosy: + ezio.melottimessages: + resolution: out of datestage: resolved
2010-10-21 18:05:56 Trundle set nosy: + Trundle
2010-10-21 12:20:38 georg.brandl set components: + Library (Lib), - Demos and Tools
2009-01-21 02:01:19 amaury.forgeotdarc set nosy: + amaury.forgeotdarcmessages: +
2009-01-21 01:36:40 pjb create