Update of /cvsroot/jython/jython/installer
In directory slayer.i.sourceforge.net:/tmp/cvs-serv10877
Modified Files:
liftoff.filelist mklist.py
Log Message:
Use the copy module from jython instead of the CPython copy module.
The jython version fixes bug 122859.
Index: liftoff.filelist
===================================================================
RCS file: /cvsroot/jython/jython/installer/liftoff.filelist,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** liftoff.filelist 2000/11/26 17:16:39 1.3
--- liftoff.filelist 2000/11/27 21:39:22 1.4
***************
*** 49,52 ****
--- 49,53 ----
#
t Lib/code.py ..\Lib\code.py
+ t Lib/copy.py ..\Lib\copy.py
t Lib/exceptions.py ..\Lib\exceptions.py
t Lib/getopt.py ..\Lib\getopt.py
***************
*** 316,320 ****
t Lib/commands.py d:\Python20\Lib\commands.py
t Lib/compileall.py d:\Python20\Lib\compileall.py
- t Lib/copy.py d:\Python20\Lib\copy.py
t Lib/copy_reg.py d:\Python20\Lib\copy_reg.py
t Lib/dircache.py d:\Python20\Lib\dircache.py
--- 317,320 ----
Index: mklist.py
===================================================================
RCS file: /cvsroot/jython/jython/installer/mklist.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** mklist.py 2000/11/26 17:16:39 1.3
--- mklist.py 2000/11/27 21:39:22 1.4
***************
*** 68,72 ****
'commands.py',
'compileall.py',
! 'copy.py',
'copy_reg.py',
'dircache.py',
--- 68,72 ----
'commands.py',
'compileall.py',
! #'copy.py', # Temporarily removed.
'copy_reg.py',
'dircache.py',
|