0
votes
3answers
16 views
Python: stop execution after a maximum time
Hello,
I have an IronPython script that execute some exes. I want to stop the execution of the current exe if its runtime exceeds a certain amount of time. How can I do this?
Cur …
3
votes
2answers
135 views
How does ironpython speed compare to other .net languages?
Hi,
I would like to give sources for what I'm saying but I just dont have them, it's something I heard.
Once a programming professor told me that some software benchmarking done …
0
votes
3answers
48 views
How to use Microsoft.Scripting.Hosting?
To embed some IronPython Code into C# I want to use the ScriptEngine
using IronPython.Hosting;
using Microsoft.Scripting.Hosting;
I found the reference for IronPython, but where …
0
votes
1answer
23 views
Using Python Libraries in Compiled IronPython
I have a python script which works well when it isn't compiled but when I compile it using pyc it is unable to access the standard python libraries (sys and os in this case). Is t …
3
votes
2answers
54 views
Embedded IronPython Memory Leak
I need some help finding a solution to a memory leak I'm having. I have a C# application (.NET v3.5) that allows a user to run IronPython scripts for testing purposes. The scripts …
1
vote
1answer
33 views
trouble executing Selenium python unittests in C# with ScriptEngine (.NET 3.5)
Hello all, first time poster.
I'm turning to my first question on stack overflow because I've found little resources in trying to find an answer. I'm looking to execute Selenium …
4
votes
2answers
88 views
IronPython to Original Python comparison. What can I expect from the first one?
I wish to learn Python but I'm working all day in .Net as a C# developer, so I decided to download and install IronPython and integrated IronPython studio. How different or similar …
0
votes
1answer
11 views
IronPython 2.6 RC2: Cyrillic character and -X:TabCompletion switch
Cyrillic characters are displayed incorrect while entering
in interactive mode if interpreter was started with -X:TabCompletion switch.
It looks like that:
s="????" …
0
votes
1answer
21 views
IronPython compiler version at runtime
How to get IronPython compiler version at runtime (interactive session)?
1
vote
3answers
107 views
Ironpython 2.6 .py -> .exe
I already attempted using py2exe (not compatible with ipy) and PYC (out of date). Can anyone point me in the direction of a good compiler?
0
votes
2answers
59 views
How to use tabs-as-spaces in Python in Visual Studio 2008?
I have some IronPython scripts that are embedded in a C# project, and it would be convenient to be able to edit them in the VS editor. VS evidently knows about Python because it pr …
2
votes
2answers
39 views
Script arguments and Embedded IronPython
I have an embedded scripting engine in my C# application that uses IronPython 2. I create the Python runtime and add a few classes to the global namespace so that the script can im …
8
votes
8answers
343 views
Extending C# .NET application - build a custom scripting language or not?
I need to build a scripting interface for my C# program that does system level testing of embedded firmware.
My application contains libraries to fully interact with the devices. …
4
votes
4answers
142 views
Using IronPython to learn the .NET framework, is this bad?
Because I'm a Python fan, I'd like to learn the .NET framework using IronPython. Would I be missing out on something? Is this in some way not recommended?
EDIT:
I'm pretty knowled …
0
votes
2answers
42 views
Optparse library - callback action while storing arg
My code:
def main():
usage = "usage: %prog [options] arg"
parser = OptionParser(usage)
parser.add_option("-p", "--pending", action="callback", callback=pending, type=" …
