[IronPython] CherryPy and IronPython 2.0b1

Sanghyeon Seo sanxiyn at gmail.com
Mon Mar 24 10:30:13 CET 2008


2008/3/24, Jeff Hardy <jdhardy at gmail.com>:
> 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



More information about the Ironpython-users mailing list