Re: [IronPython] ElementTree bug?

2010-06-19 Thread David Escobar
Good to know. Thank you! On Sat, Jun 19, 2010 at 2:01 AM, Seo Sanghyeon wrote: > 2010/6/19 David Escobar : > > So is this a known bug, or is expat one of the C-based extension modules > > that IronPython doesn't handle yet? > > expat is one of C-based extension modules that IronPython doesn't h

[IronPython] Modules in hosted enviroment

2010-06-19 Thread Ross Hammermeister
I have a project where I am hosting IronPython and I was wondering what is the best way to create modules in C# for python to use. I have found two ways to do it so far. One method is what is done in IronPython, where static classes and the PythonModule attribute are used but I don't want to use

Re: [IronPython] UI Automation: Wrong values for ControlType, AutomationElementID and more. IronPython 2.6.1

2010-06-19 Thread yngipy hernan
Ok, I have a sample project how to use UI Automation with IronPython, see : http://pyas.svn.sourceforge.net/viewvc/pyas/trunk/src/ipr/ Basically, I have to : Create a really simple DLL using C# that reports the root element. That's it. R

Re: [IronPython] ElementTree bug?

2010-06-19 Thread Seo Sanghyeon
2010/6/19 David Escobar : > So is this a known bug, or is expat one of the C-based extension modules > that IronPython doesn't handle yet? expat is one of C-based extension modules that IronPython doesn't handle yet. On the other hand, here is my implementation that works with ElementTree: https: