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
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.
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