Re: [IronPython] Problem Importing WinForms IPY2.0 B5

2008-10-08 Thread Dino Viehland
Event ctor in PythonTypeOps.GetReflectedEvent. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Davy Mitchell Sent: Wednesday, October 08, 2008 5:03 AM To: Discussion of IronPython Subject: Re: [IronPython] Problem Importing WinForms IPY2.0 B5 Same code on IP 1.1.2 outputs: 699 6

Re: [IronPython] Problem Importing WinForms IPY2.0 B5

2008-10-08 Thread Davy Mitchell
Same code on IP 1.1.2 outputs:699 696 Cheers, Davy On Wed, Oct 8, 2008 at 7:34 AM, Davy Mitchell <[EMAIL PROTECTED]> wrote: > Hi All, > Basic Repro is... > > -form.py--- > import clr > clr.AddReference('System.Windows.Forms') > from System.Windows.Forms import * > print len(dir(Form)

[IronPython] Problem Importing WinForms IPY2.0 B5

2008-10-07 Thread Davy Mitchell
Hi All, Basic Repro is... -form.py--- import clr clr.AddReference('System.Windows.Forms') from System.Windows.Forms import * print len(dir(Form)) -test.py from forms import * print len(dir(Form)) Output: 538 443 My real world case is a subclass of Form is in another m