Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:module': 0.04; 'ubuntu': 0.04; 'classes.': 0.05; 'skip:` 10': 0.07; 'python': 0.08; 'integers': 0.09; 'received:64.4': 0.09; 'defined': 0.14; 'likewise': 0.16; 'res': 0.16; 'subject:global': 0.16; 'thru': 0.16; 'argument': 0.16; 'functions,': 0.19; 'appears': 0.21; 'here?': 0.23; 'variables': 0.29; 'object': 0.30; 'classes': 0.30; 'module': 0.30; 'iterating': 0.30; 'strings,': 0.30; 'thanks': 0.31; 'class': 0.31; 'values': 0.31; 'list': 0.32; 'to:addr :python-list': 0.34; 'header:User-Agent:1': 0.34; 'test': 0.34; 'example,': 0.35; 'none': 0.35; '2.6': 0.35; 'module.': 0.35; 'charset:us-ascii': 0.36; 'passed': 0.37; 'but': 0.37; 'members': 0.37; 'using': 0.37; 'something': 0.38; 'else': 0.38; 'returned': 0.39; 'to:addr:python.org': 0.39 Date: Mon, 4 Jul 2011 10:11:33 -0800 From: Tim Johnson To: Python ML Subject: Testing if a global is defined in a module MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: AkWebsoft User-Agent: Mutt/1.5.20 (2009-06-14) X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 34 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1309803409 news.xs4all.nl 21757 [2001:888:2000:d::a6]:60878 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:8784 Using Python 2.6 on ubuntu 10.04. inspect module : I want to 'inspect' a module and get a list of all functions, classes and global variables in that module. ## A module has been imported, and we call `getmembers' members = inspect.getmembers(mod) ## While iterating thru `members', we test to see ## if an object is defined in the module. for m in members: obj = m[1] res = inspect.getmodule(obj) ## It appears that getmodule returns None for ## all but functions and classes. Example, for a module name `mvcInstall', when a class name `Install' that is defined in the module is passed as an argument to inspect.getmodule, the values returned is something like "" Likewise for functions defined in the module. ** But ** when global variables such as strings, booleans, integers are passed as an argument to getmodule, the value returned is `None'. What else can I do here? thanks -- Tim tim at johnsons-web dot com or akwebsoft dot com http://www.akwebsoft.com