Re: [IronPython] IronPython Console on Unix.

2006-07-24 Thread Graham Bloice
> > > >> Hmm... I've just tried it on several windows interpreters. > >> > >> Ctrl-Z as an exit works on Python 2.2.3 (???), but not Python > 2.3, 2.4, > >> or 2.5b1 > >> > > > > Did you forget to press enter after typing Ctrl-Z, like the > "exit" message says? > > > Nope I didn't for

Re: [IronPython] IronPython Console on Unix.

2006-07-24 Thread Dino Viehland
FYI this fix was checked in late last week so if anyone wants to try it out w/ the latest CodePlex sources and let us know what they think of the current behavior that'd be great :). We don't do anything special to not require enter though so this behavior may be close but not entirely 100% the

Re: [IronPython] IronPython & Windows Forms VII, Dock & Anchor

2006-07-24 Thread Dino Viehland
I've added this to the list of articles at http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython&title=More%20Information (the other 4 were already up there). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Foord Sent: Saturday, July 22,

Re: [IronPython] How to compile has a DLL assembly ?

2006-07-24 Thread Dino Viehland
The easiest way to compile something is to run it w/ -X:SaveAssembiles:   Ipy.exe –X:SaveAssemblies toto.py   Will write out a toto.exe.  Then you can just do an AppDomain.CurrentDomain.ExecuteAssembly on that and it’ll run.  Note you won’t be able to get at the classes defined in the a