[IronPython] Re: Missing builtins

Michael Spencer mahs at telcopartners.com
Sun Apr 3 01:12:41 CEST 2005


Joe Mason wrote:
> On Sat, Apr 02, 2005 at 02:24:03PM -0800, Michael Spencer wrote:
> 
>>Here is the set of built-ins that 2.3.3 has and that fepy 0.7.1 lacks.  
>>Absence from this list does not mean an object is correctly implemented.
> 
> 
> Is this list exhaustive, or only what you've noticed so far?
> 
> Joe
It is intended to be exhaustive, generated from 2.3.3 with:

 >>> for obj in vars(__builtin__):
... 	if obj not in checkbi.fepy:
... 	    print obj
... 		

where checkbi.fepy is a cut'n'paste copy of dir(__builtin__) in fepy 0.7.1

Michael




More information about the Ironpython-users mailing list