[Ironpython-users] AccessViolationException on Python.CreateEngine() call

2011-08-06 Thread Igor Brejc
ator) I use Win7 64bit myself, but I didn't have any such problems and I cannot reproduce this problem on any of my machines (Win7, Ubuntu). Thanks for any help, Igor Brejc ___ Ironpython-users mailing list [email protected] http://mail.python.org/mailman/listinfo/ironpython-users

Re: [Ironpython-users] AccessViolationException on Python.CreateEngine() call

2011-08-08 Thread Igor Brejc
not sure if it's a bug in IronPython, or if there's a squirrelly > COM object on the user's machine that causes IronPython to break, but > my guess is the latter. > > - Jeff > > P.S. I saw your SO question before this, but feel free to keep the > discussion where

Re: [Ironpython-users] AccessViolationException on Python.CreateEngine() call

2011-08-08 Thread Igor Brejc
_Main dir. Thanks, Igor On Mon, Aug 8, 2011 at 7:17 PM, Igor Brejc wrote: > Hi Jeff, > > Thanks for responding. I'll update the SO question if/when someone (I guess > it will probably have to be me) figures out what the problem is. > > One update: we did some more d

Re: [Ironpython-users] AccessViolationException on Python.CreateEngine() call

2011-08-08 Thread Igor Brejc
{ _comTypeCache[type.GUID] = type; } } } } #endif } On Mon, Aug 8, 2011 at 8:35 PM, Jeff Hardy wrote: > IronPython_2_6 should be all you need. The rest is the start of 2.7 > that later got moved to GitHub. > > - Jeff > > On Mon, Aug

Re: [Ironpython-users] AccessViolationException on Python.CreateEngine() call

2011-08-08 Thread Igor Brejc
the CLR > if it's crashing in mscorwks, you can do: > > lm v mmscorwks > > To get that. And finally if it is a CLR bug someone might want a crash > dump which you could get > with: > > .dump /mfh somelocation.dmp > > but just hold onto that for now - it's just in

Re: [Ironpython-users] Who's using IronPython?

2011-08-08 Thread Igor Brejc
(no company name yet) - I'm the author (Igor Brejc) Maperitive [currently free + commercial version in the future] http://maperitive.net A desktop GIS/cartography software written in C#, running on Win, Linux and Mac (using Mono). Primarily oriented towards use of free geography sources

[Ironpython-users] Code docs generation for Python-exposed .NET API

2011-09-01 Thread Igor Brejc
on API? Sandcastle seems a bit too .NETish, is there something that would resemble sphinx's generated documentation? Thanks for any hints, Igor Brejc ___ Ironpython-users mailing list [email protected] http://mail.python.org/mailman/listinfo/ironpython-users

Re: [Ironpython-users] Code docs generation for Python-exposed .NET API

2011-09-01 Thread Igor Brejc
Great, thanks for the hint. If I manage to produce something, I'll try to publish it as a reusable tool. Igor On Thu, Sep 1, 2011 at 2:06 PM, Michael Foord wrote: > On 01/09/2011 10:04, Igor Brejc wrote: > > Hi, > > I plan to write a wrapper API in C# that will b

Re: [Ironpython-users] Getting started reference

2011-10-24 Thread Igor Brejc
Hi Bruce, I have not done any WPF myself, but there are a lot of resources on the web: - http://www.ironpython.info/index.php/WPF_Example - google "ironpython wpf" I can also recommend "IronPython in Action" book, it has a chapter on WPF. As for "label1.contents", shouldn't it be "label1.C

[Ironpython-users] LightweightScopes and scopes in general

2012-02-10 Thread Igor Brejc
the scope variables in general. Any info would be appreciated. Thanks, Igor Brejc ___ Ironpython-users mailing list [email protected] http://mail.python.org/mailman/listinfo/ironpython-users

Re: [Ironpython-users] LightweightScopes and scopes in general

2012-02-10 Thread Igor Brejc
On Fri, Feb 10, 2012 at 7:15 PM, Jeff Hardy wrote: > > I believe if you run the code in a separate AppDomain you can unload > the AppDomain and the code will be collected, which should take > everything else with it. > > > Yes, I've seen the http://stackoverflow.com/questions/1664567/embedded-iro

Re: [Ironpython-users] LightweightScopes and scopes in general

2012-02-10 Thread Igor Brejc
On Fri, Feb 10, 2012 at 7:46 PM, Dino Viehland wrote: > > > Jeff wrote: > > I'm taking a stab off the top of my head based on my limited knowledge > of the > > internals, but I do know that debug code is not collectable. > > It's possible that the code itself may be holding references that keep >

Re: [Ironpython-users] LightweightScopes and scopes in general

2012-02-11 Thread Igor Brejc
> release their resources. Also they can be used with the “with” statement > so that their Dispose methods are eagerly called. > > ** ** > > *From:* Igor Brejc [mailto:[email protected]] > *Sent:* Friday, February 10, 2012 10:51 AM > *To:* Dino Viehland > *Cc:* Jeff Ha

Re: [Ironpython-users] LightweightScopes and scopes in general

2012-02-12 Thread Igor Brejc
; > ** ** > > *Keith Rome* > > *Senior Consultant and Architect* > > MCPD-EAD, MCSD, MCDBA, MCTS-WPF, MCTS-TFS, MCTS-WSS > > Wintellect | 770.617.4016 | [email protected] > > www.wintellect.com**** > > ** ** > > *From:* ironpython-users-bounces+ro

[Ironpython-users] Question on exposing collections

2012-04-20 Thread Igor Brejc
Hi, I'm developing a C# API that will be exposed to users via IronPython. I'm a bit confused on what types of collections should the API provide through its public interface (both as input and output parameters of methods and as properties). For example, what type is most suitable for exposing li

Re: [Ironpython-users] Guidelines for embedding Python libraries in installers

2012-05-08 Thread Igor Brejc
Hi, Maperitive uses IronPython for embedded scripting. What I did for Maperitive (I'm not using MSI installations, I just have a ZIP package) is to simply include the IronPython DLLs and some of the libraries from CPython (copy pasted into the package). It works on Windows, Linux and Mac. Igor O