HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //opt/alt/python27/lib64/python2.7/site-packages/guppy/etc/Code.py
#._cv_part guppy.etc.Code

def co_code_findloadednames(co):
    """Find in the code of a code object, all loaded names.
    (by LOAD_NAME, LOAD_GLOBAL or LOAD_FAST) """

    from opcode import HAVE_ARGUMENT, opmap
    hasloadname = (opmap['LOAD_NAME'],opmap['LOAD_GLOBAL'],opmap['LOAD_FAST'])
    code = co.co_code
    nargs = co.co_argcount
    len_co_names = len(co.co_names)
    indexset = {}
    n = len(code)
    i = 0
    while i < n:
        c = code[i]
        op = ord(c)
        i = i+1
        if op >= HAVE_ARGUMENT:
	    if op in hasloadname:
		oparg = ord(code[i]) + ord(code[i+1])*256
		name = co.co_names[oparg]
		indexset[name] = 1
		if len(indexset) >= len_co_names:
		    break
            i = i+2
    for name in co.co_varnames:
	try:
	    del indexset[name]
	except KeyError:
	    pass
    return indexset

def co_findloadednames(co):
    """Find all loaded names in a code object and all its consts of code type"""
    names = {}
    names.update(co_code_findloadednames(co))
    for c in co.co_consts:
	if isinstance(c, type(co)):
	    names.update(co_findloadednames(c))
    return names