[Carl J. Van Arsdall]
> basically we have:
>
>  >>>def functA():
> ...  pass
>
>  >>> functA
> <function functA at 80db128>
>
> And what I'd like to do is:
>
>  >>>__internalFuncDict__['functA']
> <function functA at 80db128>

globals()['functA']

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to