From: Finn B. <bc...@us...> - 2001-12-03 20:11:16
|
Update of /cvsroot/jython/jython In directory usw-pr-cvs1:/tmp/cvs-serv29454 Modified Files: README.txt Log Message: Changes to sys.path zipfile support was backward incompatible. Index: README.txt =================================================================== RCS file: /cvsroot/jython/jython/README.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** README.txt 2001/07/23 19:36:27 1.11 --- README.txt 2001/12/03 20:11:13 1.12 *************** *** 12,13 **** --- 12,17 ---- filesystems like windows. This matches CPython behaviour. + - The way .zip and .jar files is added to sys.path is changed from 2.1a3. + Use the form: sys.path.append("/path/to/file.zip/Lib") to search for + modules with the zipped named of "Lib/module.py" + |