If you replace 'deepcopy(x)' with 'copy(x)' below it should work:)
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Fugate
Sent: Thursday, March 27, 2008 9:56 AM
To: Discussion of IronPython
Subject: Re: [IronPython] deepcopy() in IRONPY
We sort of have a similar problem with respect to IronPython tests - the tests
we ship on CodePlex need to run without dependencies on standard CPython
libraries. What we did for the case of the 'copy' module was to reimplement
the functionality needed in pure Python. For example, a naive implementation
of copy.deepcopy might look like the following:
def copy(y):
if type(y)!=list:
return y
ret_val = list(y)
return [deepcopy(x) for x in ret_val]
Hope that helps!
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bernd Viehmann
Sent: Wednesday, March 26, 2008 10:21 PM
To: Discussion of IronPython
Subject: Re: [IronPython] deepcopy() in IRONPY
Hi Curt,
thanks, but I am not allowed to install FePy on the Production-Server. So I
need a solution with pure IronPython ;-).
Regards
Bernd
2008/3/26, Curt Hagenlocher <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>>:
On Wed, Mar 26, 2008 at 8:04 AM, Bernd Viehmann
<[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote:
>
> How can i use the copy-module-functionality in ipy?
Have you tried just using the py files that ship with CPython?
You can get a distribution of IronPython that incorporates these files
from Seo's FePy project at http://fepy.sourceforge.net
--
Curt Hagenlocher
[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>
_______________________________________________
Users mailing list
[email protected]<mailto:[email protected]>
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com