Re: [IronPython] IronPython on Windows Mobile 6

2007-05-15 Thread Keith J. Farmer
How about IronPython 2.0, on Silverlight (DLR), on WM6? (I actually don’t know, but I think it’d be fun…) From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of M. David Peterson Sent: Sunday, May 13, 2007 7:13 PM To: Discussion of IronPython Subject: Re: [IronPython] IronPython on

Re: [IronPython] Orcas integration?

2007-05-15 Thread M. David Peterson
*TONS* of great information here. Thanks to both of you (Dino and Aaron) for providing it! On 5/14/07, Aaron Leiby <[EMAIL PROTECTED]> wrote: > Good call on both counts. For the exceptions, under Debug -> Exceptions... > unchecking 'User-unhandled' for all Common Language Runtime Exceptions, and

Re: [IronPython] dispatch console command

2007-05-15 Thread Dino Viehland
This has moved to ScriptDomainManager.CurrentManager.GetCommandDispatcher/SetCommandDispatcher. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gerard Braad Jr. Sent: Tuesday, May 15, 2007 9:56 AM To: users@lists.ironpython.com Subject: [IronPython] dispa

[IronPython] dispatch console command

2007-05-15 Thread Gerard Braad Jr.
Hello, in a 'previous' release of IronPython I was able to use IronPython.Hosting.PythonEngine.ConsoleCommandDispatcher = DispatchConsoleCommand to dispatch a console command to my own function, which invokes a command to a Form. In the newer 2.0a1 release (based on DLR) I was not able to find

[IronPython] Bug in 2.0a1 SystemState.InitializeBuiltins

2007-05-15 Thread Sanghyeon Seo
I hope the bug is obvious once pointed out. InitializeBuiltins method contains a code to replace built-in nt module with posix module when Platform is PlatformID.Unix. But this is done *before* IronPython.Modules is loaded! As a result, KeyNotFoundException is raised. Clearly, this won't happen on