Paul Moore wrote: > which standard modules exist in IP? > For example can I do 'import random' or must I use the the CLR equivalents You can use most of the Python standard library, but it must be on the path (it doesn't come with the Microsoft IronPython distribution).
Make sure you have Python 2.4 installed. You can then either use the IRONPYTHONPATH environment variable and set it to the location of the Python standard library, manually add the path in site.py *or* manually add the path in your own code. Fuzzyman http://www.voidspace.org.uk/ironpython/index.shtml > ------------------------------------------------------------------------ > > _______________________________________________ > users mailing list > [email protected] > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > > ------------------------------------------------------------------------ > > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.1.411 / Virus Database: 268.17.36/681 - Release Date: 11/02/2007 > > _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
