Re: Does python have an internal list/dictionary of functions?

2006-02-17 Thread Raymond Hettinger
[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

Does python have an internal list/dictionary of functions?

2006-02-17 Thread Carl J. Van Arsdall
Python Gurus: Let me elaborate a bit more on this question. Basically, I want to know if there is some data structure in python that maps a string function name to an address of a function or something to that nature. If this is confusing, let me describe what I want to do and see if anyone