Re: [Python.NET] subclassing managed types in python

2013-10-17 Thread Kyle Rocha
I was also looking into implementing the monodevelop document and project interfaces in python in order to provide better .Net project development in sublime. Didn't get too far unfortunately. On Oct 9, 2013 2:52 AM, "Tony Roberts" wrote: > Hi, > > am I right in thinking that currently when man

Re: [Python.NET] subclassing managed types in python

2013-10-17 Thread Tony Roberts
Hi, I went ahead and implemented this as I didn't get any response from my last mail. The code is in my github repo if anyone wants it (would be great if this feature could be integrated back into the main project??) https://github.com/tonyroberts/pythonnet The tests in test_subclass.py (see also

[Python.NET] subclassing managed types in python

2013-10-09 Thread Tony Roberts
Hi, am I right in thinking that currently when managed types are subclassed in python the python methods can't override the base class methods when called from .net? It would be useful to be able to do this for something I'm working on at the moment, and before I started looking at it I wondered