1
vote
1answer
45 views
Good IronPython Book?
Hello guys,
Does anyone know a good IronPython book?
3
votes
2answers
25 views
IronPython compile-time checks against CLR libraries?
I know that IronPython is a dynamically typed language so what I am asking sounds pretty stupid, but is it possible to do something with an IronPython script to make sure the changing of the CLR …
1
vote
1answer
60 views
.NET 4 makes for better unit testing/mocking due to the ability to monkey patch?
Consider this about the up-coming Iron Python implementation.
In theory it would allow monkey patching right? Good or bad, it matters not. Given someone else's non-testable code (at least easily) the …
0
votes
1answer
15 views
IronPython disable Import after use
Is there any way to disable the use of import once I've finished using it? I'm using IronPython as a scripting engine and I don't want users to be able to import anything. This could be done in …
1
vote
2answers
135 views
+100
Why can’t I import my C# type into IronPython?
I have some types in a C# library I wrote, e.g.:
namespace SprocGenerator.Generators
{
public class DeleteGenerator : GeneratorBase
{
public DeleteGenerator(string databaseName, string …
0
votes
0answers
52 views
How to use IPython with IronPython
What is the procedure to get IPython to use IronPython as it's Python interpreter?
I know there were previously some issues: …
1
vote
1answer
63 views
Variable inspection in Visual Studio 2008 in asp.net IronPython inside a class
I need to inspect the value of a variable inside a class in asp.net IronPython in Visual Studio 2008. Visual Studio 2008 inspector doesnt work for IronPython (if the inspector works in VS 2008 for …
5
votes
2answers
300 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 to .net vs Python in …
0
votes
1answer
25 views
Check active directory passwords with ironpython
Hi,
I'm an admin on an active domain and most of my users use the same password,
I find all those users so that I could ask them to change their password.
I was thinking that iron python would be …
0
votes
1answer
21 views
Tablecellcollection is not callable
This is a dumb question, but I just cant find an answer. I want to do something as simple as this in IronPython, something I did in asp.net vb.net to capture the id of a table displayed in a gridview …
0
votes
5answers
87 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?
Current function:
def …
1
vote
1answer
37 views
How to host an IronPython engine in a separate AppDomain?
Hi All,
I am using the below code to execute the IronPython Script on separate "appDomain" from c#.
(I used this approach to resolve memory leakage issue)
The scripts which take a lesser time (less …
1
vote
1answer
34 views
How do I reference classes using IronPython?
I want to use IronPython as a simple test harness for a .net application.
I have created a project in Visual Studio 2008 and have an empty python source file.
I have added my assemblies to the project …
7
votes
13answers
515 views
How to impress developers with IronPython/Python
I need an IronPython\Python example that would show C#/VB.NET developers how awesome this language really is.
I'm looking for an easy to understand code snippet or application I can use to demo …
0
votes
2answers
45 views
VB webform in IronPython asp.net website
Hi,
I tried to bring a previously done webform made in vb.net to an IronPython asp.net website with no luck. After seeing it didnt work, I tried to write the simplest codebehind vb.net webform to see …
