2008/3/24, Jeff Hardy <[EMAIL PROTECTED]>: > Hi all, > After applying the attached patch to cherrypy trunk (r1932), CherryPy > will run a simple Hello World program (also attached) using IronPython > 2.0b1 and NWSGI. It should work with the 0.1 release of NWSGI. I > haven't tested the standalone CherryPy server yet.
A small remark: + d = dict(child.__class__.__dict__).copy() Since you are already copying, I think copy method call would be unnecessary. So: + d = dict(child.__class__.__dict__) -- Seo Sanghyeon _______________________________________________ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com