1
vote
1answer
39 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 …
0
votes
1answer
18 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 …
1
vote
1answer
27 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 …
1
vote
1answer
30 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 …
0
votes
1answer
23 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 …
7
votes
13answers
501 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
3answers
64 views
Create a new Tuple with one element modified
(I am working interactively with a WordprocessingDocument object in IronPython using the OpenXML SDK, but this is really a general Python question that should be applicable across all implementations)
…
5
votes
2answers
275 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 …
9
votes
9answers
213 views
What are the (dis)advantages of writing unit tests in a different language to the code?
Unit tests have different requirements than production code. For example, unit tests may not have to be as performant as the production code.
Perhaps it sometimes makes sense to write your unit tests …
3
votes
6answers
119 views
What is the equivalent of the C# “using” block in IronPython?
What's the equivalent of this in IronPython? Is it just a try-finally block?
using (var something = new ClassThatImplementsIDisposable())
{
// stuff happens here
}
1
vote
1answer
77 views
Reasons for using a DLR-based language rather than C# for scripting tasks?
I'm considering embedding a scripting language into one of my software projects and have identified two options: compiling C# at run-time via CodeDOM and embedding a DLR-based scripting language. …
0
votes
5answers
77 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 …
0
votes
2answers
40 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 …
1
vote
1answer
65 views
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
1answer
27 views
IronPython ScriptRuntime equivalent to CPython PYTHONPATH
The following import works inside ipy.exe prompt but fails using IronPython ScriptRuntime inside a C# 4.0 program.
import ConfigParser
C# code:
using System;
using System.Collections.Generic;
…
