Re: [IronPython] Console for WinForms

2005-11-02 Thread Patrik Husfloen
Haven't tried it from IP but this [1] is the closest I've found. /Patrik [1] http://www.codeproject.com/csharp/CommandBar.asp On 10/31/05, Peli de Halleux (PELI) <[EMAIL PROTECTED]> wrote: > > Is there a plan to add a WinForms console control in the IronPython? I > stumboled on this problem las

Re: [IronPython] Working on bugs

2005-11-02 Thread Martin Maly
We are actually not currently accepting code contributions or patches into the IronPython core. What is ultimately much more valuable to us is a self-contained simple repro of the bug or report of the feature missing. Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PRO

[IronPython] Console for WinForms

2005-11-02 Thread Peli de Halleux (PELI)
Is there a plan to add a WinForms console control in the IronPython? I stumboled on this problem last week and it is suprisingly hard to get a winform control to act as a console app!     ___ users mailing list users@lists.ironpython.com http://lists

[IronPython] Problem with keyword parameters for built-in types

2005-11-02 Thread John Doty
I'm sorry if this is a known limitation, but the following doesn't work with IronPython 0.9.3:  class MyClass:  def __init__(self, testValue):  self.testValue = testValue  def _getValue(self):   return self.testValue  value = property(_getValue, doc="This is documentatio

Re: [IronPython] How to do debugging for embedded usage

2005-11-02 Thread Michael Latta
Is there any chance of supporting debugging for the first case?  I would rather persist the script sources with the document/repository rather than as files, though I could cache them on disk if needed.  Is there an in-process debugging interface I can use to support an embedded debugger rat

[IronPython] Working on bugs

2005-11-02 Thread Alireza Moayerzadeh
Hi all, I am new to GotDotNet workspaces. Is there any document on how to select bugs and how to submit fixes to the workspace? Thanks -- Alireza ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython

Re: [IronPython] How to do debugging for embedded usage

2005-11-02 Thread Martin Maly
It largely depends on how your Python scripts are written. If you use following format:   engine.Execute("print "Hello")   debugging is hard because IronPython has no source code to map debugging info to. On the other hand, if you have your scripts stored in the files and execute them via: