Bernd Viehmann wrote: > Hi Curt, > > thanks, but I am not allowed to install FePy on the Production-Server. > So I need a solution with pure IronPython ;-).
The CPython standard library, most of which works with IronPython, is just a bunch of Python files - which you could justifiably argue are part of your application. (The ones that work are pure Python - i.e. pure IronPython.) You cn just put them in a directory and then either point to that directory with the IRONPYTHONPATH environment variable, or add 'sys.path.append(direcotry_name)' at the start of your application. This will allow you to use modules like 'copy'. Michael Foord http://www.ironpythoninaction.com > > 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 > _______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
