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
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
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
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
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
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
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: