From: Finn B. <bc...@us...> - 2001-03-22 21:38:57
|
Update of /cvsroot/jython/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv6100 Modified Files: install.ht Log Message: Updated the "Can't Access Standard Python Modules" section.It now describe the installer default. Index: install.ht =================================================================== RCS file: /cvsroot/jython/htdocs/install.ht,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** install.ht 2001/01/17 15:49:06 1.10 --- install.ht 2001/03/22 21:38:54 1.11 *************** *** 69,79 **** <H4>Can't Access Standard Python Modules</H4> ! <P>By default, Jython only installs a small collection of the standard ! Python modules. This is due the fact that much of the functionality of ! these modules is duplicated by Java packages. If you want to use parts ! of the standard Python library that are included with Jython, you have ! to select the "Library" during installation or add a directory to your ! python.path that points to a preexisting Python 2.0 distribution. This ! requires editing your "registry" file. <H4>Other Problems</H4> --- 69,80 ---- <H4>Can't Access Standard Python Modules</H4> ! <P>Not all the modules form CPython is available in Jython. Some modules ! require a C language dynamic link library that doesn't exists in java. ! Other modules are missing from Jython just because nobody have had a ! need for it before and no-one have tested the CPython module with Jython. ! If you discover that you are missing a module, try to copy the .py file ! from a CPython distribution to a directory on your Jython sys.path. ! If that works you are set. If it doesn't work, try asking on jython-users ! mailing list. <H4>Other Problems</H4> |