Hi Daniel,

For the sys module, you can do:

import sys
dir(sys)

and get the result that way. Similarly for __builtin__. For sys and
__builtin__ what you see in dir is what is implemented (or else it is a
bug). However, there are modules - for example recently added 'binascii'
- in which we only have empty stubs for the functions so even though
dir(binascii) returns the full set of functions, none of them are
implemented yet.

Martin


> Daniel Santa Cruz Wrote:
> How can I determine which standard functions are currently implemented
by IronPython?
>
> Would:
> >>> import sys
> >>> dir()
>
> show me what we have?
>
> Thanks!
> Daniel
_______________________________________________
users-ironpython.com mailing list
users-ironpython.com@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to