[IronPython] Missing func_closure

2007-05-27 Thread Sanghyeon Seo
IronPython function objects are missing func_closure attribute. This is hit by decorator module which tries to clone the function object. http://cheeseshop.python.org/pypi/decorator -- Seo Sanghyeon ___ users mailing list users@lists.ironpython.com htt

Re: [IronPython] users Digest, Vol 34, Issue 34

2007-05-27 Thread David Jensen
It would be nice if these were put on-demnand on Microsoft's site. -- Original Message -- Received: Sat, 26 May 2007 07:15:42 PM EDT From: [EMAIL PROTECTED] To: users@lists.ironpython.com Subject: users Digest, Vol 34, Issue 34 > Send users mailing list submissions to > users@lists.

[IronPython] Implement Abstract Class and Interface

2007-05-27 Thread hieristda
Hello, i want to implement an abstract class and an interface in ironpython but it does not work. Here is a code sample. class IronPythonSample(MarshalByRefObject, MyInterface): "Description of Class" var= None def getName(self): return "Iron Python Sample" def