I'm trying to collect info on crashes and I am having trouble figuring out how to get the globals that are being used in the crashed function.

import inspect

fun = 222
other = "junk"

def test():
    global fun
    harold = 888 + fun
    try:
        harold/0
    except:
        frames = inspect.trace()
        print "Local variables:"
        print frames[0][0].f_locals

        print "All global variables, not what I want!"
        print frames[0][0].f_globals

test()

test() only uses "fun" but f_globals gives all the available globals. Is there some way to get just the globals that are being used by this function?

link|improve this question
It uses inspect as well, for most definitions of "use". If you mean something else by "use", please be specific. – delnan Mar 25 '11 at 17:02
The purpose is to cull out all the extra stuff in globals. There is a core library that is imported via * so there are way too many globals to report all of them. Question updated to actually use fun. – Pat Corwin Mar 25 '11 at 18:25
feedback

3 Answers

Check this out

a = 10

def test():
    global a
    a = 12
    b = 12

print "co_argcount = ",test.__code__.co_argcount
print "co_cellvars = ",test.__code__.co_cellvars
print "co_code = ",test.__code__.co_code
print "co_consts = ",test.__code__.co_consts
print "co_filename = ",test.__code__.co_filename
print "co_firstlineno = ",test.__code__.co_firstlineno
print "co_flags = ",test.__code__.co_flags
print "co_freevars = ",test.__code__.co_freevars
print "co_lnotab = ",test.__code__.co_lnotab
print "co_name = ",test.__code__.co_name
print "co_names = ",test.__code__.co_names
print "co_nlocals = ",test.__code__.co_nlocals
print "co_stacksize = ",test.__code__.co_stacksize
print "co_varnames = ",test.__code__.co_varnames
link|improve this answer
you might want to mention this requires python 2.6 or greater. – Bryan Oakley Mar 25 '11 at 17:18
Thanks! Fortunately I am using 2.6 so test.__code__.co_names was exactly what I was looking for. In this specific case, I am decorating functions to handle them if they fail so I have the function at hand. – Pat Corwin Mar 25 '11 at 18:42
feedback

A dirty way would be to use inspect.getsourcelines() and search for lines containing global <varname>. There are no good methods for this, at least not in inspect module.

link|improve this answer
feedback

As you already found out, the property f_globals gives you the global namespace in which the function was defined.

From what I can see, the only way to find out which global variables are actually used is to disassemble the function's byte code with dis; look for the byte codes STORE_NAME, STORE_GLOBAL, DELETE_GLOBAL, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.