You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(107) |
Dec
(67) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(76) |
Feb
(125) |
Mar
(72) |
Apr
(13) |
May
(18) |
Jun
(12) |
Jul
(129) |
Aug
(47) |
Sep
(1) |
Oct
(36) |
Nov
(128) |
Dec
(124) |
2002 |
Jan
(59) |
Feb
|
Mar
(14) |
Apr
(14) |
May
(72) |
Jun
(9) |
Jul
(3) |
Aug
(5) |
Sep
(18) |
Oct
(65) |
Nov
(28) |
Dec
(12) |
2003 |
Jan
(10) |
Feb
(2) |
Mar
(4) |
Apr
(33) |
May
(21) |
Jun
(9) |
Jul
(29) |
Aug
(34) |
Sep
(4) |
Oct
(8) |
Nov
(15) |
Dec
(4) |
2004 |
Jan
(26) |
Feb
(12) |
Mar
(11) |
Apr
(9) |
May
(7) |
Jun
|
Jul
(5) |
Aug
|
Sep
(3) |
Oct
(7) |
Nov
(1) |
Dec
(10) |
2005 |
Jan
(2) |
Feb
(72) |
Mar
(16) |
Apr
(39) |
May
(48) |
Jun
(97) |
Jul
(57) |
Aug
(13) |
Sep
(16) |
Oct
(24) |
Nov
(100) |
Dec
(24) |
2006 |
Jan
(15) |
Feb
(34) |
Mar
(33) |
Apr
(31) |
May
(79) |
Jun
(64) |
Jul
(41) |
Aug
(64) |
Sep
(31) |
Oct
(46) |
Nov
(55) |
Dec
(37) |
2007 |
Jan
(32) |
Feb
(61) |
Mar
(11) |
Apr
(58) |
May
(46) |
Jun
(30) |
Jul
(94) |
Aug
(93) |
Sep
(86) |
Oct
(69) |
Nov
(125) |
Dec
(177) |
2008 |
Jan
(169) |
Feb
(97) |
Mar
(74) |
Apr
(113) |
May
(120) |
Jun
(334) |
Jul
(215) |
Aug
(237) |
Sep
(72) |
Oct
(189) |
Nov
(126) |
Dec
(160) |
2009 |
Jan
(180) |
Feb
(45) |
Mar
(98) |
Apr
(140) |
May
(151) |
Jun
(71) |
Jul
(107) |
Aug
(119) |
Sep
(73) |
Oct
(121) |
Nov
(14) |
Dec
(6) |
2010 |
Jan
(13) |
Feb
(9) |
Mar
(10) |
Apr
(64) |
May
(3) |
Jun
(16) |
Jul
(7) |
Aug
(23) |
Sep
(17) |
Oct
(37) |
Nov
(5) |
Dec
(8) |
2011 |
Jan
(10) |
Feb
(11) |
Mar
(77) |
Apr
(11) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Finn B. <bc...@us...> - 2001-07-19 14:51:00
|
Update of /cvsroot/jython/htdocs/docs In directory usw-pr-cvs1:/tmp/cvs-serv15819 Modified Files: links.h Log Message: Updated to 2.1a2 download link. Index: links.h =================================================================== RCS file: /cvsroot/jython/htdocs/docs/links.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** links.h 2001/03/14 15:44:36 1.4 --- links.h 2001/07/19 14:50:57 1.5 *************** *** 4,8 **** <li><a href="../license.html">License</a> <li><a href="../download.html">Jython 2.0</a> ! <li><a href="http://sourceforge.net/project/showfiles.php?group_id=12867&release_id=27187">Jython 2.1a1</a> <li><a href="../install.html">Installing</a> <li><a href="../platform.html">JVM Compatibility</a> --- 4,8 ---- <li><a href="../license.html">License</a> <li><a href="../download.html">Jython 2.0</a> ! <li><a href="http://sourceforge.net/project/showfiles.php?group_id=12867&release_id=44111">Jython 2.1a2</a> <li><a href="../install.html">Installing</a> <li><a href="../platform.html">JVM Compatibility</a> |
From: Finn B. <bc...@us...> - 2001-07-19 14:48:51
|
Update of /cvsroot/jython/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv15367 Added Files: build.xml Log Message: Moved the building to ant. --- NEW FILE --- <!-- Copyright 2001 Finn Bock --> <!-- The "update" target requires that an bsf.jar file is available in the ant/lib directory. --> <project name="htdocs" default="all" basedir="."> <target name="init"> <property name="htdocs.tar" value="htdocs.tar"/> <property name="htdocs.tgz" value="htdocs.tgz"/> <property name="scp.destination" value="shell.sourceforge.net:/home/groups/j/jy/jython"/> <!-- These properties should be assigned in one of the the ant.properties files <property name="python.home" value="d:\python\Python21\python"/> <property name="jython.home" value="d:\jython"/> <property name="ht2html.dir" value="d:\jython\ht2html-1.1"/> <property name="scp.command" value="scp"/> <property name="scp.user" value="bckfnn"/> --> <property file="ant.properties" /> <property file="../ant.properties" /> </target> <target name="update" depends="init"> <taskdef name="script" classname="org/apache/tools/ant/taskdefs/optional/Script"/> <!-- Rename the property because "jython.home" is not a legal python name --> <property name="jython_home" value="${jython.home}"/> <script language="jpython"> <![CDATA[ if 1: f = open("%s/NEWS.ht" % basedir, "w") f.write("<pre>\n") f.write(open("%s/NEWS" % jython_home).read()) f.write("</pre>\n") f.close() f = open("%s/license.ht" % basedir, "w") f.write("<pre>\n") f.write(open("%s/LICENSE.txt" % jython_home).read()) f.write("</pre>\n") f.close() ]]> </script> </target> <target name="generate" depends="init"> <!-- Create .html files in htdocs --> <execon executable="${python.home}/python"> <arg line="${ht2html.dir}/ht2html.py"/> <arg line="-s JPyGenerator"/> <fileset dir="."> <include name="*.ht" /> </fileset> </execon> <!-- Create .html files in htdocs/applets --> <execon executable="${python.home}/python" dir="applets"> <arg line="${ht2html.dir}/ht2html.py"/> <arg line="-s JPyGenerator"/> <arg line="-r .."/> <fileset dir="."> <include name="applets/*.ht" /> </fileset> </execon> <!-- Create .html files in htdocs/docs --> <copy todir="docs"> <fileset dir="${jython.home}/Doc" includes="*.ht"/> </copy> <copy todir="docs/api"> <fileset dir="${jython.home}/Doc/api" includes="**/*.html"/> </copy> <execon executable="${python.home}/python" dir="docs"> <arg line="${ht2html.dir}/ht2html.py"/> <arg line="-s JPyGenerator"/> <arg line="-r .."/> <fileset dir="."> <include name="docs/*.ht" /> </fileset> </execon> </target> <target name="collect" depends="generate"> <tar tarfile="${htdocs.tar}" basedir="." includes="*.html docs/*.html docs/api applets/*.html applets/*.class applets/*.java applets/*.jar applets/*.cab graphics/*.* mac/*.*"/> <gzip zipfile="${htdocs.tgz}" src="${htdocs.tar}" /> </target> <target name="all" depends="init, update, generate, collect"/> <target name="copy2sf" depends="init"> <exec executable="${scp.command}"> <arg line="${htdocs.tgz}"/> <arg line="${scp.user}@${scp.destination}"/> </exec> </target> </project> |
From: Finn B. <bc...@us...> - 2001-07-19 07:49:53
|
Update of /cvsroot/jython/jython/org/python/util In directory usw-pr-cvs1:/tmp/cvs-serv13082/util Removed Files: PyMetaClass.java Log Message: Moved PyMetaClass from util to core. That works better with jythonc --core. --- PyMetaClass.java DELETED --- |
From: Finn B. <bc...@us...> - 2001-07-19 07:49:53
|
Update of /cvsroot/jython/jython/org/python/core In directory usw-pr-cvs1:/tmp/cvs-serv13082/core Modified Files: Py.java Added Files: PyMetaClass.java Log Message: Moved PyMetaClass from util to core. That works better with jythonc --core. --- NEW FILE --- package org.python.core; // experimental PyMetaClass hook interface public interface PyMetaClass { } Index: Py.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/Py.java,v retrieving revision 2.48 retrieving revision 2.49 diff -C2 -r2.48 -r2.49 *** Py.java 2001/07/17 20:37:20 2.48 --- Py.java 2001/07/19 07:49:50 2.49 *************** *** 1435,1439 **** new PyTuple(bases), dict); ! } else if (bases[i] instanceof org.python.util.PyMetaClass) { // experimental PyMetaClass hook try { --- 1435,1439 ---- new PyTuple(bases), dict); ! } else if (bases[i] instanceof PyMetaClass) { // experimental PyMetaClass hook try { |
From: Finn B. <bc...@us...> - 2001-07-19 07:25:03
|
Update of /cvsroot/jython/bugtests In directory usw-pr-cvs1:/tmp/cvs-serv8733 Modified Files: test295.py Log Message: Turn the warning into a fullblown error if it should happen again. Index: test295.py =================================================================== RCS file: /cvsroot/jython/bugtests/test295.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** test295.py 2001/07/14 21:26:33 1.1 --- test295.py 2001/07/19 07:25:00 1.2 *************** *** 6,13 **** import traceback ! try: ! traceback.extract_stack() ! except AttributeError, msg: ! raise support.TestWarning(msg) ! --- 6,9 ---- import traceback ! traceback.extract_stack() |
From: Finn B. <bc...@us...> - 2001-07-19 07:13:01
|
Update of /cvsroot/jython/jython/org/python/core In directory usw-pr-cvs1:/tmp/cvs-serv6878 Modified Files: exceptions.java Log Message: classDictInit(): Fix #437809. Index: exceptions.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/exceptions.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** exceptions.java 2001/03/09 15:33:30 1.8 --- exceptions.java 2001/07/19 07:12:57 1.9 *************** *** 218,221 **** --- 218,222 ---- buildClass(dict, "RuntimeWarning", "Warning", "empty__init__", "Base class for warnings about dubious runtime behavior."); + ts.frame = ts.frame.f_back; } |
From: Finn B. <bc...@us...> - 2001-07-18 22:57:08
|
Update of /cvsroot/jython/bugtests/classes/test301p In directory usw-pr-cvs1:/tmp/cvs-serv18338/classes/test301p Added Files: A.java B.java Log Message: Test for #434324. --- NEW FILE --- package test301p; public class A { public B b; //b never used } --- NEW FILE --- package test301p; public class B { } |
From: Finn B. <bc...@us...> - 2001-07-18 22:57:08
|
Update of /cvsroot/jython/bugtests In directory usw-pr-cvs1:/tmp/cvs-serv18338 Added Files: test301.py test301c.py Log Message: Test for #434324. --- NEW FILE --- """ Basic test, just raises an TestError """ import support support.compileJava("classes/test301p/A.java") support.compileJava("classes/test301p/B.java") support.compileJPythonc("test301c.py", jar="test301.jar", core=1, addpackages="test301p", output="test301.err") ret = support.runJava("test301c", cp="test301.jar", output="test301c.err", expectError=1) if ret != 0: raise support.TestWarning('This should work. See test301c.err for details') --- NEW FILE --- import test301p class test301c(test301p.A): pass #print test301c() #print test301p.A() |
From: Finn B. <bc...@us...> - 2001-07-18 22:55:50
|
Update of /cvsroot/jython/bugtests/classes/test301p In directory usw-pr-cvs1:/tmp/cvs-serv18169/test301p Log Message: Directory /cvsroot/jython/bugtests/classes/test301p added to the repository |
From: Finn B. <bc...@us...> - 2001-07-18 22:55:23
|
Update of /cvsroot/jython/bugtests In directory usw-pr-cvs1:/tmp/cvs-serv18085 Modified Files: support.py Log Message: Support a few more run and compile options. Index: support.py =================================================================== RCS file: /cvsroot/jython/bugtests/support.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** support.py 2001/07/14 16:22:44 1.1 --- support.py 2001/07/18 22:55:19 1.2 *************** *** 54,57 **** --- 54,59 ---- if kw.has_key("classpath"): cmd = cmd + "-classpath %s;%%CLASSPATH%% " % kw['classpath'] + if kw.has_key("cp"): + cmd = cmd + "-classpath %s" % kw['cp'] p = execCmd('cmd /C "%s %s"' % (cmd, cls)) *************** *** 66,71 **** thread.start_new_thread(StreamReader, (p.errorStream, outstream)) ret = p.waitFor() ! if ret != 0: raise TestError, "%s failed with %d" % (cmd, ret) --- 68,74 ---- thread.start_new_thread(StreamReader, (p.errorStream, outstream)) ret = p.waitFor() ! if ret != 0 and not kw.has_key("expectError"): raise TestError, "%s failed with %d" % (cmd, ret) + return ret *************** *** 96,99 **** --- 99,104 ---- if kw.has_key("package"): cmd = cmd + "--package %s " % kw['package'] + if kw.has_key("addpackages"): + cmd = cmd + "--addpackages %s " % kw['addpackages'] if kw.has_key("jar"): cmd = cmd + "--jar %s " % kw['jar'] |
From: Finn B. <bc...@us...> - 2001-07-18 20:23:09
|
Update of /cvsroot/jython/htdocs In directory usw-pr-cvs1:/tmp/cvs-serv3933 Modified Files: NEWS.ht index.ht links.h Log Message: Updated to 2.1a2. Index: NEWS.ht =================================================================== RCS file: /cvsroot/jython/htdocs/NEWS.ht,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** NEWS.ht 2001/03/14 15:43:19 1.8 --- NEWS.ht 2001/07/18 20:23:07 1.9 *************** *** 2,5 **** --- 2,26 ---- Jython NEWS + 18-jul-2001 Jython 2.1 alpha 2 + + New features. + - Added ReadlineConsole class. This class will make it a lot easier + to integrate Bablok's readline support. + - Display Hook for Interactive Use (pep-0217) + - Added zlib, gzip and zipfile modules. + - Added nested scope to jythonc (pep-0227). + + Bug fixes. + - Fixed obscure __import__ error message #437800 + - Prevent a NPE during import when running with a security manager + - Fixed multi-level Java method overriding #222819. + - Fix for dependency problem with jythonc. #415933 + - Fix a lost syntax error when auto importing submodules. + - Use quotes around classpath, but only for win+jdk1.1. + - Find the complete list of fixed bug on SF: + http://sourceforge.net/tracker/?group_id=12867&atid=112867 + Select Status=Any and Group=Fixed in 2.1a2 + + 14-mar-2001 Jython 2.1 alpha 1 *************** *** 28,31 **** --- 49,54 ---- - Include a LineNumberTable in the compiled class files. - Fixed a java version test bug in the installer. + - Added workaround for class initialization bug in MRJ2.2.4 + - Added support for three argument getattr() calls. 17-Jan-2001 Jython 2.0 final release Index: index.ht =================================================================== RCS file: /cvsroot/jython/htdocs/index.ht,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** index.ht 2001/05/09 18:36:50 1.19 --- index.ht 2001/07/18 20:23:07 1.20 *************** *** 20,28 **** <dl> ! <p><dt><b>Jython 2.1 alpha 1 released!</b> ! <dd>Download the lastest relase of Jython ! <a href="http://sourceforge.net/project/showfiles.php?group_id=12867&release_id=27187">here</a>, or <a href="NEWS.html">read a summary</a> ! of recent changes. (14-mar-2001). <p><dt><b>Jython 2.0 released!</b> --- 20,31 ---- <dl> ! <p><dt><b>Jython 2.1 alpha 2 released!</b> ! <dd>Download the lastest release of Jython ! <a href="http://sourceforge.net/project/showfiles.php?group_id=12867&release_id=44111">here</a>, or <a href="NEWS.html">read a summary</a> ! of recent changes. (18-jul-2001). ! ! <p><dt><b>Jython 2.1a1 released!</b> ! <dd>The first alpha release of Jython 2.1 is available (14-mar-2001) <p><dt><b>Jython 2.0 released!</b> Index: links.h =================================================================== RCS file: /cvsroot/jython/htdocs/links.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** links.h 2001/04/27 19:31:54 1.8 --- links.h 2001/07/18 20:23:07 1.9 *************** *** 4,8 **** <li><a href="license.html">License</a> <li><a href="download.html">Jython 2.0</a> ! <li><a href="http://sourceforge.net/project/showfiles.php?group_id=12867&release_id=27187">Jython 2.1a1</a> <li><a href="install.html">Installing</a> <li><a href="platform.html">JVM Compatibility</a> --- 4,8 ---- <li><a href="license.html">License</a> <li><a href="download.html">Jython 2.0</a> ! <li><a href="http://sourceforge.net/project/showfiles.php?group_id=12867&release_id=44111">Jython 2.1a2</a> <li><a href="install.html">Installing</a> <li><a href="platform.html">JVM Compatibility</a> |
From: Finn B. <bc...@us...> - 2001-07-18 19:34:31
|
Update of /cvsroot/jython/jython/installer In directory usw-pr-cvs1:/tmp/cvs-serv19956/installer Modified Files: liftoff.filelist mklist.py Log Message: Added jreload demo. Index: liftoff.filelist =================================================================== RCS file: /cvsroot/jython/jython/installer/liftoff.filelist,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** liftoff.filelist 2001/07/18 19:29:31 1.16 --- liftoff.filelist 2001/07/18 19:34:28 1.17 *************** *** 217,220 **** --- 217,225 ---- t Demo/swing/Styles.py ..\Demo\swing\Styles.py t Demo/swing/TreeDemo.py ..\Demo\swing\TreeDemo.py + t Demo/jreload/example.jar ..\Demo\jreload\example.jar + t Demo/jreload/_xample/Version.class ..\Demo\jreload\_xample\Version.class + t Demo/jreload/src/example/jar-Version.java ..\Demo\jreload\src\example\jar-Version.java + t Demo/jreload/src/example/new-Version.java ..\Demo\jreload\src\example\new-Version.java + t Demo/jreload/src/example/PrintVer.java ..\Demo\jreload\src\example\PrintVer.java # # The source files Index: mklist.py =================================================================== RCS file: /cvsroot/jython/jython/installer/mklist.py,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** mklist.py 2001/07/18 19:29:31 1.17 --- mklist.py 2001/07/18 19:34:28 1.18 *************** *** 200,203 **** --- 200,206 ---- listfiles(None, "Demo/javaclasses/pygraph", *demofiles) listfiles(None, "Demo/swing", *demofiles) + listfiles(None, "Demo/jreload", 'example.jar') + listfiles(None, "Demo/jreload/_xample", 'Version.class') + listfiles(None, "Demo/jreload/src/example", *demofiles) comment("The source files") |
From: Finn B. <bc...@us...> - 2001-07-18 19:29:35
|
Update of /cvsroot/jython/jython/installer In directory usw-pr-cvs1:/tmp/cvs-serv18236/installer Modified Files: liftoff.filelist mklist.py Log Message: Must reference a binary CPython distribution, not a source distribution. Index: liftoff.filelist =================================================================== RCS file: /cvsroot/jython/jython/installer/liftoff.filelist,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** liftoff.filelist 2001/07/18 15:52:08 1.15 --- liftoff.filelist 2001/07/18 19:29:31 1.16 *************** *** 424,598 **** # @lib:_top_ ! t Lib/LICENSE d:/python/Python-2.1\LICENSE.txt ! t Lib/__future__.py d:\python\Python-2.1\Lib\__future__.py ! t Lib/BaseHTTPServer.py d:\python\Python-2.1\Lib\BaseHTTPServer.py ! t Lib/CGIHTTPServer.py d:\python\Python-2.1\Lib\CGIHTTPServer.py ! t Lib/ConfigParser.py d:\python\Python-2.1\Lib\ConfigParser.py ! t Lib/Cookie.py d:\python\Python-2.1\Lib\Cookie.py ! t Lib/MimeWriter.py d:\python\Python-2.1\Lib\MimeWriter.py ! t Lib/Queue.py d:\python\Python-2.1\Lib\Queue.py ! t Lib/SimpleHTTPServer.py d:\python\Python-2.1\Lib\SimpleHTTPServer.py ! t Lib/SocketServer.py d:\python\Python-2.1\Lib\SocketServer.py ! t Lib/StringIO.py d:\python\Python-2.1\Lib\StringIO.py ! t Lib/UserDict.py d:\python\Python-2.1\Lib\UserDict.py ! t Lib/UserList.py d:\python\Python-2.1\Lib\UserList.py ! t Lib/anydbm.py d:\python\Python-2.1\Lib\anydbm.py ! t Lib/base64.py d:\python\Python-2.1\Lib\base64.py ! t Lib/bdb.py d:\python\Python-2.1\Lib\bdb.py ! t Lib/binhex.py d:\python\Python-2.1\Lib\binhex.py ! t Lib/bisect.py d:\python\Python-2.1\Lib\bisect.py ! t Lib/calendar.py d:\python\Python-2.1\Lib\calendar.py ! t Lib/cgi.py d:\python\Python-2.1\Lib\cgi.py ! t Lib/cmd.py d:\python\Python-2.1\Lib\cmd.py ! t Lib/colorsys.py d:\python\Python-2.1\Lib\colorsys.py ! t Lib/commands.py d:\python\Python-2.1\Lib\commands.py ! t Lib/compileall.py d:\python\Python-2.1\Lib\compileall.py ! t Lib/copy_reg.py d:\python\Python-2.1\Lib\copy_reg.py ! t Lib/dircache.py d:\python\Python-2.1\Lib\dircache.py ! t Lib/dospath.py d:\python\Python-2.1\Lib\dospath.py ! t Lib/dumbdbm.py d:\python\Python-2.1\Lib\dumbdbm.py ! t Lib/fileinput.py d:\python\Python-2.1\Lib\fileinput.py ! t Lib/fnmatch.py d:\python\Python-2.1\Lib\fnmatch.py ! t Lib/formatter.py d:\python\Python-2.1\Lib\formatter.py ! t Lib/fpformat.py d:\python\Python-2.1\Lib\fpformat.py ! t Lib/ftplib.py d:\python\Python-2.1\Lib\ftplib.py ! t Lib/getopt.py d:\python\Python-2.1\Lib\getopt.py ! t Lib/glob.py d:\python\Python-2.1\Lib\glob.py ! t Lib/gopherlib.py d:\python\Python-2.1\Lib\gopherlib.py ! t Lib/gzip.py d:\python\Python-2.1\Lib\gzip.py ! t Lib/htmlentitydefs.py d:\python\Python-2.1\Lib\htmlentitydefs.py ! t Lib/htmllib.py d:\python\Python-2.1\Lib\htmllib.py ! t Lib/httplib.py d:\python\Python-2.1\Lib\httplib.py ! t Lib/imaplib.py d:\python\Python-2.1\Lib\imaplib.py ! t Lib/imghdr.py d:\python\Python-2.1\Lib\imghdr.py ! t Lib/keyword.py d:\python\Python-2.1\Lib\keyword.py ! t Lib/linecache.py d:\python\Python-2.1\Lib\linecache.py ! t Lib/macpath.py d:\python\Python-2.1\Lib\macpath.py ! t Lib/macurl2path.py d:\python\Python-2.1\Lib\macurl2path.py ! t Lib/mailbox.py d:\python\Python-2.1\Lib\mailbox.py ! t Lib/mailcap.py d:\python\Python-2.1\Lib\mailcap.py ! t Lib/mhlib.py d:\python\Python-2.1\Lib\mhlib.py ! t Lib/mimetools.py d:\python\Python-2.1\Lib\mimetools.py ! t Lib/mimetypes.py d:\python\Python-2.1\Lib\mimetypes.py ! t Lib/mimify.py d:\python\Python-2.1\Lib\mimify.py ! t Lib/multifile.py d:\python\Python-2.1\Lib\multifile.py ! t Lib/mutex.py d:\python\Python-2.1\Lib\mutex.py ! t Lib/nntplib.py d:\python\Python-2.1\Lib\nntplib.py ! t Lib/ntpath.py d:\python\Python-2.1\Lib\ntpath.py ! t Lib/nturl2path.py d:\python\Python-2.1\Lib\nturl2path.py ! t Lib/pdb.py d:\python\Python-2.1\Lib\pdb.py ! t Lib/pickle.py d:\python\Python-2.1\Lib\pickle.py ! t Lib/pipes.py d:\python\Python-2.1\Lib\pipes.py ! t Lib/popen2.py d:\python\Python-2.1\Lib\popen2.py ! t Lib/poplib.py d:\python\Python-2.1\Lib\poplib.py ! t Lib/posixfile.py d:\python\Python-2.1\Lib\posixfile.py ! t Lib/posixpath.py d:\python\Python-2.1\Lib\posixpath.py ! t Lib/pprint.py d:\python\Python-2.1\Lib\pprint.py ! t Lib/profile.py d:\python\Python-2.1\Lib\profile.py ! t Lib/pyclbr.py d:\python\Python-2.1\Lib\pyclbr.py ! t Lib/quopri.py d:\python\Python-2.1\Lib\quopri.py ! t Lib/random.py d:\python\Python-2.1\Lib\random.py ! t Lib/reconvert.py d:\python\Python-2.1\Lib\reconvert.py ! t Lib/repr.py d:\python\Python-2.1\Lib\repr.py ! t Lib/rfc822.py d:\python\Python-2.1\Lib\rfc822.py ! t Lib/sched.py d:\python\Python-2.1\Lib\sched.py ! t Lib/sgmllib.py d:\python\Python-2.1\Lib\sgmllib.py ! t Lib/site.py d:\python\Python-2.1\Lib\site.py ! t Lib/shelve.py d:\python\Python-2.1\Lib\shelve.py ! t Lib/shutil.py d:\python\Python-2.1\Lib\shutil.py ! t Lib/smtplib.py d:\python\Python-2.1\Lib\smtplib.py ! t Lib/sndhdr.py d:\python\Python-2.1\Lib\sndhdr.py ! t Lib/stat.py d:\python\Python-2.1\Lib\stat.py ! t Lib/symbol.py d:\python\Python-2.1\Lib\symbol.py ! t Lib/telnetlib.py d:\python\Python-2.1\Lib\telnetlib.py ! t Lib/tempfile.py d:\python\Python-2.1\Lib\tempfile.py ! t Lib/token.py d:\python\Python-2.1\Lib\token.py ! t Lib/tokenize.py d:\python\Python-2.1\Lib\tokenize.py ! t Lib/traceback.py d:\python\Python-2.1\Lib\traceback.py ! t Lib/tzparse.py d:\python\Python-2.1\Lib\tzparse.py ! t Lib/urllib.py d:\python\Python-2.1\Lib\urllib.py ! t Lib/urlparse.py d:\python\Python-2.1\Lib\urlparse.py ! t Lib/user.py d:\python\Python-2.1\Lib\user.py ! t Lib/whichdb.py d:\python\Python-2.1\Lib\whichdb.py ! t Lib/whrandom.py d:\python\Python-2.1\Lib\whrandom.py ! t Lib/xdrlib.py d:\python\Python-2.1\Lib\xdrlib.py ! t Lib/xmllib.py d:\python\Python-2.1\Lib\xmllib.py ! t Lib/test/pystone.py d:\python\Python-2.1\Lib\test\pystone.py ! t Lib/pstats.py d:\python\Python-2.1\Lib\pstats.py ! t Lib/code.py d:\python\Python-2.1\Lib\code.py ! t Lib/codecs.py d:\python\Python-2.1\Lib\codecs.py ! t Lib/sre.py d:\python\Python-2.1\Lib\sre.py ! t Lib/sre_compile.py d:\python\Python-2.1\Lib\sre_compile.py ! t Lib/sre_constants.py d:\python\Python-2.1\Lib\sre_constants.py ! t Lib/sre_parse.py d:\python\Python-2.1\Lib\sre_parse.py ! t Lib/encodings/aliases.py d:\python\Python-2.1\Lib\encodings\aliases.py ! t Lib/encodings/ascii.py d:\python\Python-2.1\Lib\encodings\ascii.py ! t Lib/encodings/charmap.py d:\python\Python-2.1\Lib\encodings\charmap.py ! t Lib/encodings/cp037.py d:\python\Python-2.1\Lib\encodings\cp037.py ! t Lib/encodings/cp1006.py d:\python\Python-2.1\Lib\encodings\cp1006.py ! t Lib/encodings/cp1026.py d:\python\Python-2.1\Lib\encodings\cp1026.py ! t Lib/encodings/cp1250.py d:\python\Python-2.1\Lib\encodings\cp1250.py ! t Lib/encodings/cp1251.py d:\python\Python-2.1\Lib\encodings\cp1251.py ! t Lib/encodings/cp1252.py d:\python\Python-2.1\Lib\encodings\cp1252.py ! t Lib/encodings/cp1253.py d:\python\Python-2.1\Lib\encodings\cp1253.py ! t Lib/encodings/cp1254.py d:\python\Python-2.1\Lib\encodings\cp1254.py ! t Lib/encodings/cp1255.py d:\python\Python-2.1\Lib\encodings\cp1255.py ! t Lib/encodings/cp1256.py d:\python\Python-2.1\Lib\encodings\cp1256.py ! t Lib/encodings/cp1257.py d:\python\Python-2.1\Lib\encodings\cp1257.py ! t Lib/encodings/cp1258.py d:\python\Python-2.1\Lib\encodings\cp1258.py ! t Lib/encodings/cp424.py d:\python\Python-2.1\Lib\encodings\cp424.py ! t Lib/encodings/cp437.py d:\python\Python-2.1\Lib\encodings\cp437.py ! t Lib/encodings/cp500.py d:\python\Python-2.1\Lib\encodings\cp500.py ! t Lib/encodings/cp737.py d:\python\Python-2.1\Lib\encodings\cp737.py ! t Lib/encodings/cp775.py d:\python\Python-2.1\Lib\encodings\cp775.py ! t Lib/encodings/cp850.py d:\python\Python-2.1\Lib\encodings\cp850.py ! t Lib/encodings/cp852.py d:\python\Python-2.1\Lib\encodings\cp852.py ! t Lib/encodings/cp855.py d:\python\Python-2.1\Lib\encodings\cp855.py ! t Lib/encodings/cp856.py d:\python\Python-2.1\Lib\encodings\cp856.py ! t Lib/encodings/cp857.py d:\python\Python-2.1\Lib\encodings\cp857.py ! t Lib/encodings/cp860.py d:\python\Python-2.1\Lib\encodings\cp860.py ! t Lib/encodings/cp861.py d:\python\Python-2.1\Lib\encodings\cp861.py ! t Lib/encodings/cp862.py d:\python\Python-2.1\Lib\encodings\cp862.py ! t Lib/encodings/cp863.py d:\python\Python-2.1\Lib\encodings\cp863.py ! t Lib/encodings/cp864.py d:\python\Python-2.1\Lib\encodings\cp864.py ! t Lib/encodings/cp865.py d:\python\Python-2.1\Lib\encodings\cp865.py ! t Lib/encodings/cp866.py d:\python\Python-2.1\Lib\encodings\cp866.py ! t Lib/encodings/cp869.py d:\python\Python-2.1\Lib\encodings\cp869.py ! t Lib/encodings/cp874.py d:\python\Python-2.1\Lib\encodings\cp874.py ! t Lib/encodings/cp875.py d:\python\Python-2.1\Lib\encodings\cp875.py ! t Lib/encodings/iso8859_1.py d:\python\Python-2.1\Lib\encodings\iso8859_1.py ! t Lib/encodings/iso8859_10.py d:\python\Python-2.1\Lib\encodings\iso8859_10.py ! t Lib/encodings/iso8859_13.py d:\python\Python-2.1\Lib\encodings\iso8859_13.py ! t Lib/encodings/iso8859_14.py d:\python\Python-2.1\Lib\encodings\iso8859_14.py ! t Lib/encodings/iso8859_15.py d:\python\Python-2.1\Lib\encodings\iso8859_15.py ! t Lib/encodings/iso8859_2.py d:\python\Python-2.1\Lib\encodings\iso8859_2.py ! t Lib/encodings/iso8859_3.py d:\python\Python-2.1\Lib\encodings\iso8859_3.py ! t Lib/encodings/iso8859_4.py d:\python\Python-2.1\Lib\encodings\iso8859_4.py ! t Lib/encodings/iso8859_5.py d:\python\Python-2.1\Lib\encodings\iso8859_5.py ! t Lib/encodings/iso8859_6.py d:\python\Python-2.1\Lib\encodings\iso8859_6.py ! t Lib/encodings/iso8859_7.py d:\python\Python-2.1\Lib\encodings\iso8859_7.py ! t Lib/encodings/iso8859_8.py d:\python\Python-2.1\Lib\encodings\iso8859_8.py ! t Lib/encodings/iso8859_9.py d:\python\Python-2.1\Lib\encodings\iso8859_9.py ! t Lib/encodings/koi8_r.py d:\python\Python-2.1\Lib\encodings\koi8_r.py ! t Lib/encodings/latin_1.py d:\python\Python-2.1\Lib\encodings\latin_1.py ! t Lib/encodings/mac_cyrillic.py d:\python\Python-2.1\Lib\encodings\mac_cyrillic.py ! t Lib/encodings/mac_greek.py d:\python\Python-2.1\Lib\encodings\mac_greek.py ! t Lib/encodings/mac_iceland.py d:\python\Python-2.1\Lib\encodings\mac_iceland.py ! t Lib/encodings/mac_latin2.py d:\python\Python-2.1\Lib\encodings\mac_latin2.py ! t Lib/encodings/mac_roman.py d:\python\Python-2.1\Lib\encodings\mac_roman.py ! t Lib/encodings/mac_turkish.py d:\python\Python-2.1\Lib\encodings\mac_turkish.py ! t Lib/encodings/mbcs.py d:\python\Python-2.1\Lib\encodings\mbcs.py ! t Lib/encodings/raw_unicode_escape.py d:\python\Python-2.1\Lib\encodings\raw_unicode_escape.py ! t Lib/encodings/undefined.py d:\python\Python-2.1\Lib\encodings\undefined.py ! t Lib/encodings/unicode_escape.py d:\python\Python-2.1\Lib\encodings\unicode_escape.py ! t Lib/encodings/unicode_internal.py d:\python\Python-2.1\Lib\encodings\unicode_internal.py ! t Lib/encodings/utf_16.py d:\python\Python-2.1\Lib\encodings\utf_16.py ! t Lib/encodings/utf_16_be.py d:\python\Python-2.1\Lib\encodings\utf_16_be.py ! t Lib/encodings/utf_16_le.py d:\python\Python-2.1\Lib\encodings\utf_16_le.py ! t Lib/encodings/utf_8.py d:\python\Python-2.1\Lib\encodings\utf_8.py ! t Lib/encodings/__init__.py d:\python\Python-2.1\Lib\encodings\__init__.py ! t Lib/threading.py d:\python\Python-2.1\Lib\threading.py ! t Lib/atexit.py d:\python\Python-2.1\Lib\atexit.py ! t Lib/UserString.py d:\python\Python-2.1\Lib\UserString.py ! t Lib/warnings.py d:\python\Python-2.1\Lib\warnings.py #===== end of list generated by mklist.py ===== --- 424,598 ---- # @lib:_top_ ! t Lib/LICENSE d:/python/Python21\LICENSE.txt ! t Lib/__future__.py d:\python\Python21\Lib\__future__.py ! t Lib/BaseHTTPServer.py d:\python\Python21\Lib\BaseHTTPServer.py ! t Lib/CGIHTTPServer.py d:\python\Python21\Lib\CGIHTTPServer.py ! t Lib/ConfigParser.py d:\python\Python21\Lib\ConfigParser.py ! t Lib/Cookie.py d:\python\Python21\Lib\Cookie.py ! t Lib/MimeWriter.py d:\python\Python21\Lib\MimeWriter.py ! t Lib/Queue.py d:\python\Python21\Lib\Queue.py ! t Lib/SimpleHTTPServer.py d:\python\Python21\Lib\SimpleHTTPServer.py ! t Lib/SocketServer.py d:\python\Python21\Lib\SocketServer.py ! t Lib/StringIO.py d:\python\Python21\Lib\StringIO.py ! t Lib/UserDict.py d:\python\Python21\Lib\UserDict.py ! t Lib/UserList.py d:\python\Python21\Lib\UserList.py ! t Lib/anydbm.py d:\python\Python21\Lib\anydbm.py ! t Lib/base64.py d:\python\Python21\Lib\base64.py ! t Lib/bdb.py d:\python\Python21\Lib\bdb.py ! t Lib/binhex.py d:\python\Python21\Lib\binhex.py ! t Lib/bisect.py d:\python\Python21\Lib\bisect.py ! t Lib/calendar.py d:\python\Python21\Lib\calendar.py ! t Lib/cgi.py d:\python\Python21\Lib\cgi.py ! t Lib/cmd.py d:\python\Python21\Lib\cmd.py ! t Lib/colorsys.py d:\python\Python21\Lib\colorsys.py ! t Lib/commands.py d:\python\Python21\Lib\commands.py ! t Lib/compileall.py d:\python\Python21\Lib\compileall.py ! t Lib/copy_reg.py d:\python\Python21\Lib\copy_reg.py ! t Lib/dircache.py d:\python\Python21\Lib\dircache.py ! t Lib/dospath.py d:\python\Python21\Lib\dospath.py ! t Lib/dumbdbm.py d:\python\Python21\Lib\dumbdbm.py ! t Lib/fileinput.py d:\python\Python21\Lib\fileinput.py ! t Lib/fnmatch.py d:\python\Python21\Lib\fnmatch.py ! t Lib/formatter.py d:\python\Python21\Lib\formatter.py ! t Lib/fpformat.py d:\python\Python21\Lib\fpformat.py ! t Lib/ftplib.py d:\python\Python21\Lib\ftplib.py ! t Lib/getopt.py d:\python\Python21\Lib\getopt.py ! t Lib/glob.py d:\python\Python21\Lib\glob.py ! t Lib/gopherlib.py d:\python\Python21\Lib\gopherlib.py ! t Lib/gzip.py d:\python\Python21\Lib\gzip.py ! t Lib/htmlentitydefs.py d:\python\Python21\Lib\htmlentitydefs.py ! t Lib/htmllib.py d:\python\Python21\Lib\htmllib.py ! t Lib/httplib.py d:\python\Python21\Lib\httplib.py ! t Lib/imaplib.py d:\python\Python21\Lib\imaplib.py ! t Lib/imghdr.py d:\python\Python21\Lib\imghdr.py ! t Lib/keyword.py d:\python\Python21\Lib\keyword.py ! t Lib/linecache.py d:\python\Python21\Lib\linecache.py ! t Lib/macpath.py d:\python\Python21\Lib\macpath.py ! t Lib/macurl2path.py d:\python\Python21\Lib\macurl2path.py ! t Lib/mailbox.py d:\python\Python21\Lib\mailbox.py ! t Lib/mailcap.py d:\python\Python21\Lib\mailcap.py ! t Lib/mhlib.py d:\python\Python21\Lib\mhlib.py ! t Lib/mimetools.py d:\python\Python21\Lib\mimetools.py ! t Lib/mimetypes.py d:\python\Python21\Lib\mimetypes.py ! t Lib/mimify.py d:\python\Python21\Lib\mimify.py ! t Lib/multifile.py d:\python\Python21\Lib\multifile.py ! t Lib/mutex.py d:\python\Python21\Lib\mutex.py ! t Lib/nntplib.py d:\python\Python21\Lib\nntplib.py ! t Lib/ntpath.py d:\python\Python21\Lib\ntpath.py ! t Lib/nturl2path.py d:\python\Python21\Lib\nturl2path.py ! t Lib/pdb.py d:\python\Python21\Lib\pdb.py ! t Lib/pickle.py d:\python\Python21\Lib\pickle.py ! t Lib/pipes.py d:\python\Python21\Lib\pipes.py ! t Lib/popen2.py d:\python\Python21\Lib\popen2.py ! t Lib/poplib.py d:\python\Python21\Lib\poplib.py ! t Lib/posixfile.py d:\python\Python21\Lib\posixfile.py ! t Lib/posixpath.py d:\python\Python21\Lib\posixpath.py ! t Lib/pprint.py d:\python\Python21\Lib\pprint.py ! t Lib/profile.py d:\python\Python21\Lib\profile.py ! t Lib/pyclbr.py d:\python\Python21\Lib\pyclbr.py ! t Lib/quopri.py d:\python\Python21\Lib\quopri.py ! t Lib/random.py d:\python\Python21\Lib\random.py ! t Lib/reconvert.py d:\python\Python21\Lib\reconvert.py ! t Lib/repr.py d:\python\Python21\Lib\repr.py ! t Lib/rfc822.py d:\python\Python21\Lib\rfc822.py ! t Lib/sched.py d:\python\Python21\Lib\sched.py ! t Lib/sgmllib.py d:\python\Python21\Lib\sgmllib.py ! t Lib/site.py d:\python\Python21\Lib\site.py ! t Lib/shelve.py d:\python\Python21\Lib\shelve.py ! t Lib/shutil.py d:\python\Python21\Lib\shutil.py ! t Lib/smtplib.py d:\python\Python21\Lib\smtplib.py ! t Lib/sndhdr.py d:\python\Python21\Lib\sndhdr.py ! t Lib/stat.py d:\python\Python21\Lib\stat.py ! t Lib/symbol.py d:\python\Python21\Lib\symbol.py ! t Lib/telnetlib.py d:\python\Python21\Lib\telnetlib.py ! t Lib/tempfile.py d:\python\Python21\Lib\tempfile.py ! t Lib/token.py d:\python\Python21\Lib\token.py ! t Lib/tokenize.py d:\python\Python21\Lib\tokenize.py ! t Lib/traceback.py d:\python\Python21\Lib\traceback.py ! t Lib/tzparse.py d:\python\Python21\Lib\tzparse.py ! t Lib/urllib.py d:\python\Python21\Lib\urllib.py ! t Lib/urlparse.py d:\python\Python21\Lib\urlparse.py ! t Lib/user.py d:\python\Python21\Lib\user.py ! t Lib/whichdb.py d:\python\Python21\Lib\whichdb.py ! t Lib/whrandom.py d:\python\Python21\Lib\whrandom.py ! t Lib/xdrlib.py d:\python\Python21\Lib\xdrlib.py ! t Lib/xmllib.py d:\python\Python21\Lib\xmllib.py ! t Lib/test/pystone.py d:\python\Python21\Lib\test\pystone.py ! t Lib/pstats.py d:\python\Python21\Lib\pstats.py ! t Lib/code.py d:\python\Python21\Lib\code.py ! t Lib/codecs.py d:\python\Python21\Lib\codecs.py ! t Lib/sre.py d:\python\Python21\Lib\sre.py ! t Lib/sre_compile.py d:\python\Python21\Lib\sre_compile.py ! t Lib/sre_constants.py d:\python\Python21\Lib\sre_constants.py ! t Lib/sre_parse.py d:\python\Python21\Lib\sre_parse.py ! t Lib/encodings/aliases.py d:\python\Python21\Lib\encodings\aliases.py ! t Lib/encodings/ascii.py d:\python\Python21\Lib\encodings\ascii.py ! t Lib/encodings/charmap.py d:\python\Python21\Lib\encodings\charmap.py ! t Lib/encodings/cp037.py d:\python\Python21\Lib\encodings\cp037.py ! t Lib/encodings/cp1006.py d:\python\Python21\Lib\encodings\cp1006.py ! t Lib/encodings/cp1026.py d:\python\Python21\Lib\encodings\cp1026.py ! t Lib/encodings/cp1250.py d:\python\Python21\Lib\encodings\cp1250.py ! t Lib/encodings/cp1251.py d:\python\Python21\Lib\encodings\cp1251.py ! t Lib/encodings/cp1252.py d:\python\Python21\Lib\encodings\cp1252.py ! t Lib/encodings/cp1253.py d:\python\Python21\Lib\encodings\cp1253.py ! t Lib/encodings/cp1254.py d:\python\Python21\Lib\encodings\cp1254.py ! t Lib/encodings/cp1255.py d:\python\Python21\Lib\encodings\cp1255.py ! t Lib/encodings/cp1256.py d:\python\Python21\Lib\encodings\cp1256.py ! t Lib/encodings/cp1257.py d:\python\Python21\Lib\encodings\cp1257.py ! t Lib/encodings/cp1258.py d:\python\Python21\Lib\encodings\cp1258.py ! t Lib/encodings/cp424.py d:\python\Python21\Lib\encodings\cp424.py ! t Lib/encodings/cp437.py d:\python\Python21\Lib\encodings\cp437.py ! t Lib/encodings/cp500.py d:\python\Python21\Lib\encodings\cp500.py ! t Lib/encodings/cp737.py d:\python\Python21\Lib\encodings\cp737.py ! t Lib/encodings/cp775.py d:\python\Python21\Lib\encodings\cp775.py ! t Lib/encodings/cp850.py d:\python\Python21\Lib\encodings\cp850.py ! t Lib/encodings/cp852.py d:\python\Python21\Lib\encodings\cp852.py ! t Lib/encodings/cp855.py d:\python\Python21\Lib\encodings\cp855.py ! t Lib/encodings/cp856.py d:\python\Python21\Lib\encodings\cp856.py ! t Lib/encodings/cp857.py d:\python\Python21\Lib\encodings\cp857.py ! t Lib/encodings/cp860.py d:\python\Python21\Lib\encodings\cp860.py ! t Lib/encodings/cp861.py d:\python\Python21\Lib\encodings\cp861.py ! t Lib/encodings/cp862.py d:\python\Python21\Lib\encodings\cp862.py ! t Lib/encodings/cp863.py d:\python\Python21\Lib\encodings\cp863.py ! t Lib/encodings/cp864.py d:\python\Python21\Lib\encodings\cp864.py ! t Lib/encodings/cp865.py d:\python\Python21\Lib\encodings\cp865.py ! t Lib/encodings/cp866.py d:\python\Python21\Lib\encodings\cp866.py ! t Lib/encodings/cp869.py d:\python\Python21\Lib\encodings\cp869.py ! t Lib/encodings/cp874.py d:\python\Python21\Lib\encodings\cp874.py ! t Lib/encodings/cp875.py d:\python\Python21\Lib\encodings\cp875.py ! t Lib/encodings/iso8859_1.py d:\python\Python21\Lib\encodings\iso8859_1.py ! t Lib/encodings/iso8859_10.py d:\python\Python21\Lib\encodings\iso8859_10.py ! t Lib/encodings/iso8859_13.py d:\python\Python21\Lib\encodings\iso8859_13.py ! t Lib/encodings/iso8859_14.py d:\python\Python21\Lib\encodings\iso8859_14.py ! t Lib/encodings/iso8859_15.py d:\python\Python21\Lib\encodings\iso8859_15.py ! t Lib/encodings/iso8859_2.py d:\python\Python21\Lib\encodings\iso8859_2.py ! t Lib/encodings/iso8859_3.py d:\python\Python21\Lib\encodings\iso8859_3.py ! t Lib/encodings/iso8859_4.py d:\python\Python21\Lib\encodings\iso8859_4.py ! t Lib/encodings/iso8859_5.py d:\python\Python21\Lib\encodings\iso8859_5.py ! t Lib/encodings/iso8859_6.py d:\python\Python21\Lib\encodings\iso8859_6.py ! t Lib/encodings/iso8859_7.py d:\python\Python21\Lib\encodings\iso8859_7.py ! t Lib/encodings/iso8859_8.py d:\python\Python21\Lib\encodings\iso8859_8.py ! t Lib/encodings/iso8859_9.py d:\python\Python21\Lib\encodings\iso8859_9.py ! t Lib/encodings/koi8_r.py d:\python\Python21\Lib\encodings\koi8_r.py ! t Lib/encodings/latin_1.py d:\python\Python21\Lib\encodings\latin_1.py ! t Lib/encodings/mac_cyrillic.py d:\python\Python21\Lib\encodings\mac_cyrillic.py ! t Lib/encodings/mac_greek.py d:\python\Python21\Lib\encodings\mac_greek.py ! t Lib/encodings/mac_iceland.py d:\python\Python21\Lib\encodings\mac_iceland.py ! t Lib/encodings/mac_latin2.py d:\python\Python21\Lib\encodings\mac_latin2.py ! t Lib/encodings/mac_roman.py d:\python\Python21\Lib\encodings\mac_roman.py ! t Lib/encodings/mac_turkish.py d:\python\Python21\Lib\encodings\mac_turkish.py ! t Lib/encodings/mbcs.py d:\python\Python21\Lib\encodings\mbcs.py ! t Lib/encodings/raw_unicode_escape.py d:\python\Python21\Lib\encodings\raw_unicode_escape.py ! t Lib/encodings/undefined.py d:\python\Python21\Lib\encodings\undefined.py ! t Lib/encodings/unicode_escape.py d:\python\Python21\Lib\encodings\unicode_escape.py ! t Lib/encodings/unicode_internal.py d:\python\Python21\Lib\encodings\unicode_internal.py ! t Lib/encodings/utf_16.py d:\python\Python21\Lib\encodings\utf_16.py ! t Lib/encodings/utf_16_be.py d:\python\Python21\Lib\encodings\utf_16_be.py ! t Lib/encodings/utf_16_le.py d:\python\Python21\Lib\encodings\utf_16_le.py ! t Lib/encodings/utf_8.py d:\python\Python21\Lib\encodings\utf_8.py ! t Lib/encodings/__init__.py d:\python\Python21\Lib\encodings\__init__.py ! t Lib/threading.py d:\python\Python21\Lib\threading.py ! t Lib/atexit.py d:\python\Python21\Lib\atexit.py ! t Lib/UserString.py d:\python\Python21\Lib\UserString.py ! t Lib/warnings.py d:\python\Python21\Lib\warnings.py #===== end of list generated by mklist.py ===== Index: mklist.py =================================================================== RCS file: /cvsroot/jython/jython/installer/mklist.py,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** mklist.py 2001/07/18 15:52:08 1.16 --- mklist.py 2001/07/18 19:29:31 1.17 *************** *** 2,6 **** import glob, os ! PYTHONDIR = r"d:/python/Python-2.1" def listfiles(root, d, *masks, **kws): --- 2,6 ---- import glob, os ! PYTHONDIR = r"d:/python/Python21" def listfiles(root, d, *masks, **kws): |
From: Finn B. <bc...@us...> - 2001-07-18 16:44:59
|
Update of /cvsroot/jython/jython In directory usw-pr-cvs1:/tmp/cvs-serv27413 Modified Files: NEWS Log Message: Latest news. Index: NEWS =================================================================== RCS file: /cvsroot/jython/jython/NEWS,v retrieving revision 2.34 retrieving revision 2.35 diff -C2 -r2.34 -r2.35 *** NEWS 2001/07/03 21:08:22 2.34 --- NEWS 2001/07/18 16:44:56 2.35 *************** *** 1,5 **** Jython NEWS ! xx-jun-2001 Jython 2.1 alpha 2 New features. --- 1,5 ---- Jython NEWS ! 18-jul-2001 Jython 2.1 alpha 2 New features. *************** *** 7,15 **** --- 7,24 ---- to integrate Bablok's readline support. - Display Hook for Interactive Use (pep-0217) + - Added zlib, gzip and zipfile modules. + - Added nested scope to jythonc (pep-0227). Bug fixes. - Fixed obscure __import__ error message #437800 - Prevent a NPE during import when running with a security manager + - Fixed multi-level Java method overriding #222819. + - Fix for dependency problem with jythonc. #415933 - Fix a lost syntax error when auto importing submodules. + - Use quotes around classpath, but only for win+jdk1.1. + - Find the complete list of fixed bug on SF: + http://sourceforge.net/tracker/?group_id=12867&atid=112867 + Select Status=Any and Group=Fixed in 2.1a2 + 14-mar-2001 Jython 2.1 alpha 1 |
Update of /cvsroot/jython/jython/org/python/core In directory usw-pr-cvs1:/tmp/cvs-serv9454/core Modified Files: PyInstance.java PyJavaInstance.java PyJavaPackage.java PyModule.java PyObject.java PySlice.java __builtin__.java Log Message: Fix javadoc 1.4 warnings. Index: PyInstance.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PyInstance.java,v retrieving revision 2.21 retrieving revision 2.22 diff -C2 -r2.21 -r2.22 *** PyInstance.java 2001/03/05 19:58:51 2.21 --- PyInstance.java 2001/07/18 15:53:56 2.22 *************** *** 322,326 **** } ! public void __delattr__(String name) throws PyException { // Need code to handle _dodel PyObject deller = __class__.__delattr__; --- 322,326 ---- } ! public void __delattr__(String name) { // Need code to handle _dodel PyObject deller = __class__.__delattr__; Index: PyJavaInstance.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PyJavaInstance.java,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** PyJavaInstance.java 2001/02/25 16:47:44 2.5 --- PyJavaInstance.java 2001/07/18 15:53:56 2.6 *************** *** 25,28 **** --- 25,34 ---- } + /** + * Implementation of the Externalizable interface. + * @param in the input stream. + * @exception java.io.IOException + * @exception ClassNotFoundException + */ public void readExternal(java.io.ObjectInput in) throws java.io.IOException, ClassNotFoundException *************** *** 33,37 **** } ! public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException --- 39,47 ---- } ! /** ! * Implementation of the Externalizable interface. ! * @param out the output stream. ! * @exception java.io.IOException ! */ public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException Index: PyJavaPackage.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PyJavaPackage.java,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** PyJavaPackage.java 2001/06/13 20:44:33 2.13 --- PyJavaPackage.java 2001/07/18 15:53:56 2.14 *************** *** 159,163 **** } ! public void __setattr__(String attr, PyObject value) throws PyException { if (attr == "__mgr__") { PackageManager newMgr = (PackageManager)Py.tojava(value, --- 159,163 ---- } ! public void __setattr__(String attr, PyObject value) { if (attr == "__mgr__") { PackageManager newMgr = (PackageManager)Py.tojava(value, Index: PyModule.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PyModule.java,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** PyModule.java 2001/07/17 20:34:35 2.11 --- PyModule.java 2001/07/18 15:53:56 2.12 *************** *** 70,78 **** } ! public void __setattr__(String attr, PyObject value) throws PyException { __dict__.__setitem__(attr, value); } ! public void __delattr__(String attr) throws PyException { __dict__.__delitem__(attr); } --- 70,78 ---- } ! public void __setattr__(String attr, PyObject value) { __dict__.__setitem__(attr, value); } ! public void __delattr__(String attr) { __dict__.__delitem__(attr); } Index: PyObject.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PyObject.java,v retrieving revision 2.23 retrieving revision 2.24 diff -C2 -r2.23 -r2.24 *** PyObject.java 2001/03/05 19:55:34 2.23 --- PyObject.java 2001/07/18 15:53:56 2.24 *************** *** 822,826 **** * or a PyObject[2] consisting of replacements for this and o. **/ ! public Object __coerce_ex__(PyObject o) throws PyException { return null; } --- 822,826 ---- * or a PyObject[2] consisting of replacements for this and o. **/ ! public Object __coerce_ex__(PyObject o) { return null; } *************** *** 1949,1952 **** --- 1949,1957 ---- /* A convenience function for PyProxy's */ // Possibly add _jcall(), _jcall(Object, ...) as future optimization + /** + * A convenience function for PyProxy's. + * @param args call arguments. + * @exception Throwable + */ public PyObject _jcallexc(Object[] args) throws Throwable { PyObject[] pargs = new PyObject[args.length]; Index: PySlice.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PySlice.java,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** PySlice.java 2001/02/25 16:51:51 2.3 --- PySlice.java 2001/07/18 15:53:56 2.4 *************** *** 23,32 **** } ! public PyString __str__() throws PyException { return new PyString(start.__repr__()+":"+stop.__repr__()+":"+ step.__repr__()); } ! public PyString __repr__() throws PyException { return new PyString("slice("+start.__repr__()+", "+ stop.__repr__()+", "+ --- 23,32 ---- } ! public PyString __str__() { return new PyString(start.__repr__()+":"+stop.__repr__()+":"+ step.__repr__()); } ! public PyString __repr__() { return new PyString("slice("+start.__repr__()+", "+ stop.__repr__()+", "+ Index: __builtin__.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/__builtin__.java,v retrieving revision 2.34 retrieving revision 2.35 diff -C2 -r2.34 -r2.35 *** __builtin__.java 2001/07/02 04:49:09 2.34 --- __builtin__.java 2001/07/18 15:53:56 2.35 *************** *** 578,585 **** --- 578,596 ---- } + /** + * Open a file read-only. + * @param name the file to open. + * @exception java.io.IOException + */ public static PyFile open(String name) throws java.io.IOException { return new PyFile(name, "r", -1); } + /** + * Open a file with the specified mode. + * @param name name of the file to open. + * @param mode open mode of the file. Use "r", "w", "r+", "w+" and "a". + * @exception java.io.IOException + */ public static PyFile open(String name, String mode) throws java.io.IOException *************** *** 588,591 **** --- 599,609 ---- } + /** + * Open a file with the specified mode and buffer size. + * @param name name of the file to open. + * @param mode open mode of the file. Use "r", "w", "r+", "w+" and "a". + * @param bufsize size of the internal buffer. Not currently used. + * @exception java.io.IOException + */ public static PyFile open(String name, String mode, int bufsize) throws java.io.IOException *************** *** 766,779 **** return imp.reload(o); } ! public static PyObject reload(PyJavaClass o) throws PyException { return imp.reload(o); } ! public static PyString repr(PyObject o) throws PyException { return o.__repr__(); } //This seems awfully special purpose... ! public static PyFloat round(double f, int digits) throws PyException { boolean neg = f < 0; double multiple = Math.pow(10., digits); --- 784,797 ---- return imp.reload(o); } ! public static PyObject reload(PyJavaClass o) { return imp.reload(o); } ! public static PyString repr(PyObject o) { return o.__repr__(); } //This seems awfully special purpose... ! public static PyFloat round(double f, int digits) { boolean neg = f < 0; double multiple = Math.pow(10., digits); *************** *** 786,790 **** } ! public static PyFloat round(double f) throws PyException { return round(f, 0); } --- 804,808 ---- } ! public static PyFloat round(double f) { return round(f, 0); } |
From: Finn B. <bc...@us...> - 2001-07-18 15:53:59
|
Update of /cvsroot/jython/jython/org/python/util In directory usw-pr-cvs1:/tmp/cvs-serv9454/util Modified Files: InteractiveInterpreter.java PyServlet.java Log Message: Fix javadoc 1.4 warnings. Index: InteractiveInterpreter.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/util/InteractiveInterpreter.java,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** InteractiveInterpreter.java 2001/05/27 18:49:15 2.4 --- InteractiveInterpreter.java 2001/07/18 15:53:56 2.5 *************** *** 115,119 **** * get control to do the break; **/ ! public void interrupt(ThreadState ts) throws InterruptedException { TraceFunction breaker = new BreakTraceFunction(); TraceFunction oldTrace = ts.systemState.tracefunc; --- 115,119 ---- * get control to do the break; **/ ! public void interrupt(ThreadState ts) { TraceFunction breaker = new BreakTraceFunction(); TraceFunction oldTrace = ts.systemState.tracefunc; Index: PyServlet.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/util/PyServlet.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** PyServlet.java 2001/03/29 19:01:52 1.10 --- PyServlet.java 2001/07/18 15:53:56 1.11 *************** *** 99,102 **** --- 99,109 ---- } + /** + * Implementation of the HttpServlet main method. + * @param req the request parameter. + * @param res the response parameter. + * @exception ServletException + * @exception IOException + */ public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException |
From: Finn B. <bc...@us...> - 2001-07-18 15:52:11
|
Update of /cvsroot/jython/jython/installer In directory usw-pr-cvs1:/tmp/cvs-serv8840 Modified Files: liftoff.filelist mklist.py Log Message: Use re, zipfile and copy modules from jython's Lib. Index: liftoff.filelist =================================================================== RCS file: /cvsroot/jython/jython/installer/liftoff.filelist,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** liftoff.filelist 2001/07/18 11:09:17 1.14 --- liftoff.filelist 2001/07/18 15:52:08 1.15 *************** *** 55,58 **** --- 55,59 ---- t Lib/jreload.py ..\Lib\jreload.py t Lib/marshal.py ..\Lib\marshal.py + t Lib/re.py ..\Lib\re.py t Lib/socket.py ..\Lib\socket.py t Lib/string.py ..\Lib\string.py *************** *** 98,101 **** --- 99,103 ---- t Doc/api/org/python/core/ClassDictInit.html ..\Doc\api\org\python\core\ClassDictInit.html t Doc/api/org/python/core/codecs.html ..\Doc\api\org\python\core\codecs.html + t Doc/api/org/python/core/CompilerFlags.html ..\Doc\api\org\python\core\CompilerFlags.html t Doc/api/org/python/core/exceptions.html ..\Doc\api\org\python\core\exceptions.html t Doc/api/org/python/core/ExtraMath.html ..\Doc\api\org\python\core\ExtraMath.html *************** *** 178,184 **** --- 180,188 ---- t Doc/api/org/python/util/package-summary.html ..\Doc\api\org\python\util\package-summary.html t Doc/api/org/python/util/package-tree.html ..\Doc\api\org\python\util\package-tree.html + t Doc/api/org/python/util/PyMetaClass.html ..\Doc\api\org\python\util\PyMetaClass.html t Doc/api/org/python/util/PyServlet.html ..\Doc\api\org\python\util\PyServlet.html t Doc/api/org/python/util/PythonInterpreter.html ..\Doc\api\org\python\util\PythonInterpreter.html t Doc/api/org/python/util/PythonObjectInputStream.html ..\Doc\api\org\python\util\PythonObjectInputStream.html + t Doc/api/org/python/util/ReadlineConsole.html ..\Doc\api\org\python\util\ReadlineConsole.html # # Demos *************** *** 444,448 **** t Lib/commands.py d:\python\Python-2.1\Lib\commands.py t Lib/compileall.py d:\python\Python-2.1\Lib\compileall.py - t Lib/copy.py d:\python\Python-2.1\Lib\copy.py t Lib/copy_reg.py d:\python\Python-2.1\Lib\copy_reg.py t Lib/dircache.py d:\python\Python-2.1\Lib\dircache.py --- 448,451 ---- *************** *** 515,524 **** t Lib/xdrlib.py d:\python\Python-2.1\Lib\xdrlib.py t Lib/xmllib.py d:\python\Python-2.1\Lib\xmllib.py - t Lib/zipfile.py d:\python\Python-2.1\Lib\zipfile.py t Lib/test/pystone.py d:\python\Python-2.1\Lib\test\pystone.py t Lib/pstats.py d:\python\Python-2.1\Lib\pstats.py t Lib/code.py d:\python\Python-2.1\Lib\code.py t Lib/codecs.py d:\python\Python-2.1\Lib\codecs.py - t Lib/re.py d:\python\Python-2.1\Lib\re.py t Lib/sre.py d:\python\Python-2.1\Lib\sre.py t Lib/sre_compile.py d:\python\Python-2.1\Lib\sre_compile.py --- 518,525 ---- Index: mklist.py =================================================================== RCS file: /cvsroot/jython/jython/installer/mklist.py,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** mklist.py 2001/07/18 11:08:44 1.15 --- mklist.py 2001/07/18 15:52:08 1.16 *************** *** 71,75 **** 'commands.py', 'compileall.py', ! 'copy.py', 'copy_reg.py', 'dircache.py', --- 71,75 ---- 'commands.py', 'compileall.py', ! #'copy.py', 'copy_reg.py', 'dircache.py', *************** *** 144,148 **** 'xdrlib.py', 'xmllib.py', ! 'zipfile.py', 'test/pystone.py', --- 144,148 ---- 'xdrlib.py', 'xmllib.py', ! #'zipfile.py', 'test/pystone.py', *************** *** 151,155 **** 'code.py', 'codecs.py', ! 're.py', 'sre*.py', 'encodings/*.py', --- 151,155 ---- 'code.py', 'codecs.py', ! #'re.py', 'sre*.py', 'encodings/*.py', |
From: Finn B. <bc...@us...> - 2001-07-18 15:49:28
|
Update of /cvsroot/jython/jython/Lib In directory usw-pr-cvs1:/tmp/cvs-serv7789 Added Files: re.py Log Message: This is a crude hack to work around a jythonc bug regarding the __all__ attribute. --- NEW FILE --- __all__ = [ "match", "search", "sub", "subn", "split", "findall", "compile", "purge", "template", "escape", "I", "L", "M", "S", "X", "U", "IGNORECASE", "LOCALE", "MULTILINE", "DOTALL", "VERBOSE", "UNICODE", "error" ] import sre, sys module = sys.modules['re'] for name in __all__: setattr(module, name, getattr(sre, name)) |
From: Finn B. <bc...@us...> - 2001-07-18 15:47:44
|
Update of /cvsroot/jython/jython/Lib/test In directory usw-pr-cvs1:/tmp/cvs-serv7067 Modified Files: test_support.py Log Message: Avoid '@' in the test filename. It breaks test_import when run from this directory. Index: test_support.py =================================================================== RCS file: /cvsroot/jython/jython/Lib/test/test_support.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** test_support.py 1999/02/15 14:54:11 1.1 --- test_support.py 2001/07/18 15:47:41 1.2 *************** *** 40,44 **** return cmp(x, y) ! TESTFN = '@test' # Filename used for testing from os import unlink import string --- 40,44 ---- return cmp(x, y) ! TESTFN = '$test' # Filename used for testing from os import unlink import string *************** *** 96,98 **** oldStdout = None ! return txt \ No newline at end of file --- 96,98 ---- oldStdout = None ! return txt |
From: Finn B. <bc...@us...> - 2001-07-18 15:41:21
|
Update of /cvsroot/jython/jython/Lib/test In directory usw-pr-cvs1:/tmp/cvs-serv4488 Removed Files: StringIO.py Log Message: With this file gone the tests cannot succeed without a cpython installation. I have no problem with that. --- StringIO.py DELETED --- |
From: Finn B. <bc...@us...> - 2001-07-18 12:23:46
|
Update of /cvsroot/jython/jython/Doc In directory usw-pr-cvs1:/tmp/cvs-serv13854 Modified Files: differences.ht Log Message: Added 'chr'. Index: differences.ht =================================================================== RCS file: /cvsroot/jython/jython/Doc/differences.ht,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** differences.ht 2001/03/27 17:35:56 2.10 --- differences.ht 2001/07/18 12:23:43 2.11 *************** *** 170,173 **** --- 170,174 ---- through the default codec before going to/from the file. + <p><LI>The builtin 'chr' function allows values in the range [0..65535]. </UL> |
From: Finn B. <bc...@us...> - 2001-07-18 11:09:20
|
Update of /cvsroot/jython/jython/installer In directory usw-pr-cvs1:/tmp/cvs-serv31362 Modified Files: liftoff.filelist Log Message: Updated with new jython files and new CPython location. Index: liftoff.filelist =================================================================== RCS file: /cvsroot/jython/jython/installer/liftoff.filelist,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** liftoff.filelist 2001/03/14 14:37:33 1.13 --- liftoff.filelist 2001/07/18 11:09:17 1.14 *************** *** 48,51 **** --- 48,52 ---- # special library modules # + t Lib/copy.py ..\Lib\copy.py t Lib/exceptions.py ..\Lib\exceptions.py t Lib/getopt.py ..\Lib\getopt.py *************** *** 56,59 **** --- 57,62 ---- t Lib/socket.py ..\Lib\socket.py t Lib/string.py ..\Lib\string.py + t Lib/zipfile.py ..\Lib\zipfile.py + t Lib/zlib.py ..\Lib\zlib.py t Lib/pawt/colors.py ..\Lib\pawt\colors.py t Lib/pawt/swing.py ..\Lib\pawt\swing.py *************** *** 117,120 **** --- 120,124 ---- t Doc/api/org/python/core/PyBeanProperty.html ..\Doc\api\org\python\core\PyBeanProperty.html t Doc/api/org/python/core/PyBuiltinFunctionSet.html ..\Doc\api\org\python\core\PyBuiltinFunctionSet.html + t Doc/api/org/python/core/PyCell.html ..\Doc\api\org\python\core\PyCell.html t Doc/api/org/python/core/PyClass.html ..\Doc\api\org\python\core\PyClass.html t Doc/api/org/python/core/PyCode.html ..\Doc\api\org\python\core\PyCode.html *************** *** 240,244 **** t org/python/compiler/Code.java ..\org\python\compiler\Code.java t org/python/compiler/CodeCompiler.java ..\org\python\compiler\CodeCompiler.java ! t org/python/compiler/CompilerFlags.java ..\org\python\compiler\CompilerFlags.java t org/python/compiler/Constant.java ..\org\python\compiler\Constant.java t org/python/compiler/ConstantPool.java ..\org\python\compiler\ConstantPool.java --- 244,248 ---- t org/python/compiler/Code.java ..\org\python\compiler\Code.java t org/python/compiler/CodeCompiler.java ..\org\python\compiler\CodeCompiler.java ! t org/python/compiler/CompilationContext.java ..\org\python\compiler\CompilationContext.java t org/python/compiler/Constant.java ..\org\python\compiler\Constant.java t org/python/compiler/ConstantPool.java ..\org\python\compiler\ConstantPool.java *************** *** 265,268 **** --- 269,273 ---- t org/python/core/CollectionProxy.java ..\org\python\core\CollectionProxy.java t org/python/core/CollectionProxy2.java ..\org\python\core\CollectionProxy2.java + t org/python/core/CompilerFlags.java ..\org\python\core\CompilerFlags.java t org/python/core/exceptions.java ..\org\python\core\exceptions.java t org/python/core/ExtraMath.java ..\org\python\core\ExtraMath.java *************** *** 375,378 **** --- 380,388 ---- t org/python/modules/_sre.java ..\org\python\modules\_sre.java t org/python/modules/Makefile ..\org\python\modules\Makefile + t org/python/modules/sre/MatchObject.java ..\org\python\modules\sre\MatchObject.java + t org/python/modules/sre/PatternObject.java ..\org\python\modules\sre\PatternObject.java + t org/python/modules/sre/ScannerObject.java ..\org\python\modules\sre\ScannerObject.java + t org/python/modules/sre/SRE_REPEAT.java ..\org\python\modules\sre\SRE_REPEAT.java + t org/python/modules/sre/SRE_STATE.java ..\org\python\modules\sre\SRE_STATE.java t org/python/parser/ASCII_CharStream.java ..\org\python\parser\ASCII_CharStream.java t org/python/parser/JJTPythonGrammarState.java ..\org\python\parser\JJTPythonGrammarState.java *************** *** 395,401 **** --- 405,413 ---- t org/python/util/InteractiveInterpreter.java ..\org\python\util\InteractiveInterpreter.java t org/python/util/jython.java ..\org\python\util\jython.java + t org/python/util/PyMetaClass.java ..\org\python\util\PyMetaClass.java t org/python/util/PyServlet.java ..\org\python\util\PyServlet.java t org/python/util/PythonInterpreter.java ..\org\python\util\PythonInterpreter.java t org/python/util/PythonObjectInputStream.java ..\org\python\util\PythonObjectInputStream.java + t org/python/util/ReadlineConsole.java ..\org\python\util\ReadlineConsole.java t org/python/util/Makefile ..\org\python\util\Makefile t Lib/jxxload_help/DiscardHelp.java ..\Lib\jxxload_help\DiscardHelp.java *************** *** 408,585 **** # @lib:_top_ ! t Lib/LICENSE i:/Python21\LICENSE.txt ! t Lib/__future__.py i:\Python21\Lib\__future__.py ! t Lib/BaseHTTPServer.py i:\Python21\Lib\BaseHTTPServer.py ! t Lib/CGIHTTPServer.py i:\Python21\Lib\CGIHTTPServer.py ! t Lib/ConfigParser.py i:\Python21\Lib\ConfigParser.py ! t Lib/Cookie.py i:\Python21\Lib\Cookie.py ! t Lib/MimeWriter.py i:\Python21\Lib\MimeWriter.py ! t Lib/Queue.py i:\Python21\Lib\Queue.py ! t Lib/SimpleHTTPServer.py i:\Python21\Lib\SimpleHTTPServer.py ! t Lib/SocketServer.py i:\Python21\Lib\SocketServer.py ! t Lib/StringIO.py i:\Python21\Lib\StringIO.py ! t Lib/UserDict.py i:\Python21\Lib\UserDict.py ! t Lib/UserList.py i:\Python21\Lib\UserList.py ! t Lib/anydbm.py i:\Python21\Lib\anydbm.py ! t Lib/base64.py i:\Python21\Lib\base64.py ! t Lib/bdb.py i:\Python21\Lib\bdb.py ! t Lib/binhex.py i:\Python21\Lib\binhex.py ! t Lib/bisect.py i:\Python21\Lib\bisect.py ! t Lib/calendar.py i:\Python21\Lib\calendar.py ! t Lib/cgi.py i:\Python21\Lib\cgi.py ! t Lib/cmd.py i:\Python21\Lib\cmd.py ! t Lib/colorsys.py i:\Python21\Lib\colorsys.py ! t Lib/commands.py i:\Python21\Lib\commands.py ! t Lib/compileall.py i:\Python21\Lib\compileall.py ! t Lib/copy.py i:\Python21\Lib\copy.py ! t Lib/copy_reg.py i:\Python21\Lib\copy_reg.py ! t Lib/dircache.py i:\Python21\Lib\dircache.py ! t Lib/dospath.py i:\Python21\Lib\dospath.py ! t Lib/dumbdbm.py i:\Python21\Lib\dumbdbm.py ! t Lib/fileinput.py i:\Python21\Lib\fileinput.py ! t Lib/fnmatch.py i:\Python21\Lib\fnmatch.py ! t Lib/formatter.py i:\Python21\Lib\formatter.py ! t Lib/fpformat.py i:\Python21\Lib\fpformat.py ! t Lib/ftplib.py i:\Python21\Lib\ftplib.py ! t Lib/getopt.py i:\Python21\Lib\getopt.py ! t Lib/glob.py i:\Python21\Lib\glob.py ! t Lib/gopherlib.py i:\Python21\Lib\gopherlib.py ! t Lib/gzip.py i:\Python21\Lib\gzip.py ! t Lib/htmlentitydefs.py i:\Python21\Lib\htmlentitydefs.py ! t Lib/htmllib.py i:\Python21\Lib\htmllib.py ! t Lib/httplib.py i:\Python21\Lib\httplib.py ! t Lib/imaplib.py i:\Python21\Lib\imaplib.py ! t Lib/imghdr.py i:\Python21\Lib\imghdr.py ! t Lib/keyword.py i:\Python21\Lib\keyword.py ! t Lib/linecache.py i:\Python21\Lib\linecache.py ! t Lib/macpath.py i:\Python21\Lib\macpath.py ! t Lib/macurl2path.py i:\Python21\Lib\macurl2path.py ! t Lib/mailbox.py i:\Python21\Lib\mailbox.py ! t Lib/mailcap.py i:\Python21\Lib\mailcap.py ! t Lib/mhlib.py i:\Python21\Lib\mhlib.py ! t Lib/mimetools.py i:\Python21\Lib\mimetools.py ! t Lib/mimetypes.py i:\Python21\Lib\mimetypes.py ! t Lib/mimify.py i:\Python21\Lib\mimify.py ! t Lib/multifile.py i:\Python21\Lib\multifile.py ! t Lib/mutex.py i:\Python21\Lib\mutex.py ! t Lib/nntplib.py i:\Python21\Lib\nntplib.py ! t Lib/ntpath.py i:\Python21\Lib\ntpath.py ! t Lib/nturl2path.py i:\Python21\Lib\nturl2path.py ! t Lib/pdb.py i:\Python21\Lib\pdb.py ! t Lib/pickle.py i:\Python21\Lib\pickle.py ! t Lib/pipes.py i:\Python21\Lib\pipes.py ! t Lib/popen2.py i:\Python21\Lib\popen2.py ! t Lib/poplib.py i:\Python21\Lib\poplib.py ! t Lib/posixfile.py i:\Python21\Lib\posixfile.py ! t Lib/posixpath.py i:\Python21\Lib\posixpath.py ! t Lib/pprint.py i:\Python21\Lib\pprint.py ! t Lib/profile.py i:\Python21\Lib\profile.py ! t Lib/pyclbr.py i:\Python21\Lib\pyclbr.py ! t Lib/quopri.py i:\Python21\Lib\quopri.py ! t Lib/random.py i:\Python21\Lib\random.py ! t Lib/reconvert.py i:\Python21\Lib\reconvert.py ! t Lib/repr.py i:\Python21\Lib\repr.py ! t Lib/rfc822.py i:\Python21\Lib\rfc822.py ! t Lib/sched.py i:\Python21\Lib\sched.py ! t Lib/sgmllib.py i:\Python21\Lib\sgmllib.py ! t Lib/site.py i:\Python21\Lib\site.py ! t Lib/shelve.py i:\Python21\Lib\shelve.py ! t Lib/shutil.py i:\Python21\Lib\shutil.py ! t Lib/smtplib.py i:\Python21\Lib\smtplib.py ! t Lib/sndhdr.py i:\Python21\Lib\sndhdr.py ! t Lib/stat.py i:\Python21\Lib\stat.py ! t Lib/symbol.py i:\Python21\Lib\symbol.py ! t Lib/telnetlib.py i:\Python21\Lib\telnetlib.py ! t Lib/tempfile.py i:\Python21\Lib\tempfile.py ! t Lib/token.py i:\Python21\Lib\token.py ! t Lib/tokenize.py i:\Python21\Lib\tokenize.py ! t Lib/traceback.py i:\Python21\Lib\traceback.py ! t Lib/tzparse.py i:\Python21\Lib\tzparse.py ! t Lib/urllib.py i:\Python21\Lib\urllib.py ! t Lib/urlparse.py i:\Python21\Lib\urlparse.py ! t Lib/user.py i:\Python21\Lib\user.py ! t Lib/whichdb.py i:\Python21\Lib\whichdb.py ! t Lib/whrandom.py i:\Python21\Lib\whrandom.py ! t Lib/xdrlib.py i:\Python21\Lib\xdrlib.py ! t Lib/xmllib.py i:\Python21\Lib\xmllib.py ! t Lib/zipfile.py i:\Python21\Lib\zipfile.py ! t Lib/test/pystone.py i:\Python21\Lib\test\pystone.py ! t Lib/pstats.py i:\Python21\Lib\pstats.py ! t Lib/code.py i:\Python21\Lib\code.py ! t Lib/codecs.py i:\Python21\Lib\codecs.py ! t Lib/re.py i:\Python21\Lib\re.py ! t Lib/sre.py i:\Python21\Lib\sre.py ! t Lib/sre_compile.py i:\Python21\Lib\sre_compile.py ! t Lib/sre_constants.py i:\Python21\Lib\sre_constants.py ! t Lib/sre_parse.py i:\Python21\Lib\sre_parse.py ! t Lib/encodings/aliases.py i:\Python21\Lib\encodings\aliases.py ! t Lib/encodings/ascii.py i:\Python21\Lib\encodings\ascii.py ! t Lib/encodings/charmap.py i:\Python21\Lib\encodings\charmap.py ! t Lib/encodings/cp037.py i:\Python21\Lib\encodings\cp037.py ! t Lib/encodings/cp1006.py i:\Python21\Lib\encodings\cp1006.py ! t Lib/encodings/cp1026.py i:\Python21\Lib\encodings\cp1026.py ! t Lib/encodings/cp1250.py i:\Python21\Lib\encodings\cp1250.py ! t Lib/encodings/cp1251.py i:\Python21\Lib\encodings\cp1251.py ! t Lib/encodings/cp1252.py i:\Python21\Lib\encodings\cp1252.py ! t Lib/encodings/cp1253.py i:\Python21\Lib\encodings\cp1253.py ! t Lib/encodings/cp1254.py i:\Python21\Lib\encodings\cp1254.py ! t Lib/encodings/cp1255.py i:\Python21\Lib\encodings\cp1255.py ! t Lib/encodings/cp1256.py i:\Python21\Lib\encodings\cp1256.py ! t Lib/encodings/cp1257.py i:\Python21\Lib\encodings\cp1257.py ! t Lib/encodings/cp1258.py i:\Python21\Lib\encodings\cp1258.py ! t Lib/encodings/cp424.py i:\Python21\Lib\encodings\cp424.py ! t Lib/encodings/cp437.py i:\Python21\Lib\encodings\cp437.py ! t Lib/encodings/cp500.py i:\Python21\Lib\encodings\cp500.py ! t Lib/encodings/cp737.py i:\Python21\Lib\encodings\cp737.py ! t Lib/encodings/cp775.py i:\Python21\Lib\encodings\cp775.py ! t Lib/encodings/cp850.py i:\Python21\Lib\encodings\cp850.py ! t Lib/encodings/cp852.py i:\Python21\Lib\encodings\cp852.py ! t Lib/encodings/cp855.py i:\Python21\Lib\encodings\cp855.py ! t Lib/encodings/cp856.py i:\Python21\Lib\encodings\cp856.py ! t Lib/encodings/cp857.py i:\Python21\Lib\encodings\cp857.py ! t Lib/encodings/cp860.py i:\Python21\Lib\encodings\cp860.py ! t Lib/encodings/cp861.py i:\Python21\Lib\encodings\cp861.py ! t Lib/encodings/cp862.py i:\Python21\Lib\encodings\cp862.py ! t Lib/encodings/cp863.py i:\Python21\Lib\encodings\cp863.py ! t Lib/encodings/cp864.py i:\Python21\Lib\encodings\cp864.py ! t Lib/encodings/cp865.py i:\Python21\Lib\encodings\cp865.py ! t Lib/encodings/cp866.py i:\Python21\Lib\encodings\cp866.py ! t Lib/encodings/cp869.py i:\Python21\Lib\encodings\cp869.py ! t Lib/encodings/cp874.py i:\Python21\Lib\encodings\cp874.py ! t Lib/encodings/cp875.py i:\Python21\Lib\encodings\cp875.py ! t Lib/encodings/iso8859_1.py i:\Python21\Lib\encodings\iso8859_1.py ! t Lib/encodings/iso8859_10.py i:\Python21\Lib\encodings\iso8859_10.py ! t Lib/encodings/iso8859_13.py i:\Python21\Lib\encodings\iso8859_13.py ! t Lib/encodings/iso8859_14.py i:\Python21\Lib\encodings\iso8859_14.py ! t Lib/encodings/iso8859_15.py i:\Python21\Lib\encodings\iso8859_15.py ! t Lib/encodings/iso8859_2.py i:\Python21\Lib\encodings\iso8859_2.py ! t Lib/encodings/iso8859_3.py i:\Python21\Lib\encodings\iso8859_3.py ! t Lib/encodings/iso8859_4.py i:\Python21\Lib\encodings\iso8859_4.py ! t Lib/encodings/iso8859_5.py i:\Python21\Lib\encodings\iso8859_5.py ! t Lib/encodings/iso8859_6.py i:\Python21\Lib\encodings\iso8859_6.py ! t Lib/encodings/iso8859_7.py i:\Python21\Lib\encodings\iso8859_7.py ! t Lib/encodings/iso8859_8.py i:\Python21\Lib\encodings\iso8859_8.py ! t Lib/encodings/iso8859_9.py i:\Python21\Lib\encodings\iso8859_9.py ! t Lib/encodings/koi8_r.py i:\Python21\Lib\encodings\koi8_r.py ! t Lib/encodings/latin_1.py i:\Python21\Lib\encodings\latin_1.py ! t Lib/encodings/mac_cyrillic.py i:\Python21\Lib\encodings\mac_cyrillic.py ! t Lib/encodings/mac_greek.py i:\Python21\Lib\encodings\mac_greek.py ! t Lib/encodings/mac_iceland.py i:\Python21\Lib\encodings\mac_iceland.py ! t Lib/encodings/mac_latin2.py i:\Python21\Lib\encodings\mac_latin2.py ! t Lib/encodings/mac_roman.py i:\Python21\Lib\encodings\mac_roman.py ! t Lib/encodings/mac_turkish.py i:\Python21\Lib\encodings\mac_turkish.py ! t Lib/encodings/mbcs.py i:\Python21\Lib\encodings\mbcs.py ! t Lib/encodings/raw_unicode_escape.py i:\Python21\Lib\encodings\raw_unicode_escape.py ! t Lib/encodings/undefined.py i:\Python21\Lib\encodings\undefined.py ! t Lib/encodings/unicode_escape.py i:\Python21\Lib\encodings\unicode_escape.py ! t Lib/encodings/unicode_internal.py i:\Python21\Lib\encodings\unicode_internal.py ! t Lib/encodings/utf_16.py i:\Python21\Lib\encodings\utf_16.py ! t Lib/encodings/utf_16_be.py i:\Python21\Lib\encodings\utf_16_be.py ! t Lib/encodings/utf_16_le.py i:\Python21\Lib\encodings\utf_16_le.py ! t Lib/encodings/utf_8.py i:\Python21\Lib\encodings\utf_8.py ! t Lib/encodings/__init__.py i:\Python21\Lib\encodings\__init__.py ! t Lib/threading.py i:\Python21\Lib\threading.py ! t Lib/atexit.py i:\Python21\Lib\atexit.py ! t Lib/UserString.py i:\Python21\Lib\UserString.py ! t Lib/warnings.py i:\Python21\Lib\warnings.py #===== end of list generated by mklist.py ===== --- 420,597 ---- # @lib:_top_ ! t Lib/LICENSE d:/python/Python-2.1\LICENSE.txt ! t Lib/__future__.py d:\python\Python-2.1\Lib\__future__.py ! t Lib/BaseHTTPServer.py d:\python\Python-2.1\Lib\BaseHTTPServer.py ! t Lib/CGIHTTPServer.py d:\python\Python-2.1\Lib\CGIHTTPServer.py ! t Lib/ConfigParser.py d:\python\Python-2.1\Lib\ConfigParser.py ! t Lib/Cookie.py d:\python\Python-2.1\Lib\Cookie.py ! t Lib/MimeWriter.py d:\python\Python-2.1\Lib\MimeWriter.py ! t Lib/Queue.py d:\python\Python-2.1\Lib\Queue.py ! t Lib/SimpleHTTPServer.py d:\python\Python-2.1\Lib\SimpleHTTPServer.py ! t Lib/SocketServer.py d:\python\Python-2.1\Lib\SocketServer.py ! t Lib/StringIO.py d:\python\Python-2.1\Lib\StringIO.py ! t Lib/UserDict.py d:\python\Python-2.1\Lib\UserDict.py ! t Lib/UserList.py d:\python\Python-2.1\Lib\UserList.py ! t Lib/anydbm.py d:\python\Python-2.1\Lib\anydbm.py ! t Lib/base64.py d:\python\Python-2.1\Lib\base64.py ! t Lib/bdb.py d:\python\Python-2.1\Lib\bdb.py ! t Lib/binhex.py d:\python\Python-2.1\Lib\binhex.py ! t Lib/bisect.py d:\python\Python-2.1\Lib\bisect.py ! t Lib/calendar.py d:\python\Python-2.1\Lib\calendar.py ! t Lib/cgi.py d:\python\Python-2.1\Lib\cgi.py ! t Lib/cmd.py d:\python\Python-2.1\Lib\cmd.py ! t Lib/colorsys.py d:\python\Python-2.1\Lib\colorsys.py ! t Lib/commands.py d:\python\Python-2.1\Lib\commands.py ! t Lib/compileall.py d:\python\Python-2.1\Lib\compileall.py ! t Lib/copy.py d:\python\Python-2.1\Lib\copy.py ! t Lib/copy_reg.py d:\python\Python-2.1\Lib\copy_reg.py ! t Lib/dircache.py d:\python\Python-2.1\Lib\dircache.py ! t Lib/dospath.py d:\python\Python-2.1\Lib\dospath.py ! t Lib/dumbdbm.py d:\python\Python-2.1\Lib\dumbdbm.py ! t Lib/fileinput.py d:\python\Python-2.1\Lib\fileinput.py ! t Lib/fnmatch.py d:\python\Python-2.1\Lib\fnmatch.py ! t Lib/formatter.py d:\python\Python-2.1\Lib\formatter.py ! t Lib/fpformat.py d:\python\Python-2.1\Lib\fpformat.py ! t Lib/ftplib.py d:\python\Python-2.1\Lib\ftplib.py ! t Lib/getopt.py d:\python\Python-2.1\Lib\getopt.py ! t Lib/glob.py d:\python\Python-2.1\Lib\glob.py ! t Lib/gopherlib.py d:\python\Python-2.1\Lib\gopherlib.py ! t Lib/gzip.py d:\python\Python-2.1\Lib\gzip.py ! t Lib/htmlentitydefs.py d:\python\Python-2.1\Lib\htmlentitydefs.py ! t Lib/htmllib.py d:\python\Python-2.1\Lib\htmllib.py ! t Lib/httplib.py d:\python\Python-2.1\Lib\httplib.py ! t Lib/imaplib.py d:\python\Python-2.1\Lib\imaplib.py ! t Lib/imghdr.py d:\python\Python-2.1\Lib\imghdr.py ! t Lib/keyword.py d:\python\Python-2.1\Lib\keyword.py ! t Lib/linecache.py d:\python\Python-2.1\Lib\linecache.py ! t Lib/macpath.py d:\python\Python-2.1\Lib\macpath.py ! t Lib/macurl2path.py d:\python\Python-2.1\Lib\macurl2path.py ! t Lib/mailbox.py d:\python\Python-2.1\Lib\mailbox.py ! t Lib/mailcap.py d:\python\Python-2.1\Lib\mailcap.py ! t Lib/mhlib.py d:\python\Python-2.1\Lib\mhlib.py ! t Lib/mimetools.py d:\python\Python-2.1\Lib\mimetools.py ! t Lib/mimetypes.py d:\python\Python-2.1\Lib\mimetypes.py ! t Lib/mimify.py d:\python\Python-2.1\Lib\mimify.py ! t Lib/multifile.py d:\python\Python-2.1\Lib\multifile.py ! t Lib/mutex.py d:\python\Python-2.1\Lib\mutex.py ! t Lib/nntplib.py d:\python\Python-2.1\Lib\nntplib.py ! t Lib/ntpath.py d:\python\Python-2.1\Lib\ntpath.py ! t Lib/nturl2path.py d:\python\Python-2.1\Lib\nturl2path.py ! t Lib/pdb.py d:\python\Python-2.1\Lib\pdb.py ! t Lib/pickle.py d:\python\Python-2.1\Lib\pickle.py ! t Lib/pipes.py d:\python\Python-2.1\Lib\pipes.py ! t Lib/popen2.py d:\python\Python-2.1\Lib\popen2.py ! t Lib/poplib.py d:\python\Python-2.1\Lib\poplib.py ! t Lib/posixfile.py d:\python\Python-2.1\Lib\posixfile.py ! t Lib/posixpath.py d:\python\Python-2.1\Lib\posixpath.py ! t Lib/pprint.py d:\python\Python-2.1\Lib\pprint.py ! t Lib/profile.py d:\python\Python-2.1\Lib\profile.py ! t Lib/pyclbr.py d:\python\Python-2.1\Lib\pyclbr.py ! t Lib/quopri.py d:\python\Python-2.1\Lib\quopri.py ! t Lib/random.py d:\python\Python-2.1\Lib\random.py ! t Lib/reconvert.py d:\python\Python-2.1\Lib\reconvert.py ! t Lib/repr.py d:\python\Python-2.1\Lib\repr.py ! t Lib/rfc822.py d:\python\Python-2.1\Lib\rfc822.py ! t Lib/sched.py d:\python\Python-2.1\Lib\sched.py ! t Lib/sgmllib.py d:\python\Python-2.1\Lib\sgmllib.py ! t Lib/site.py d:\python\Python-2.1\Lib\site.py ! t Lib/shelve.py d:\python\Python-2.1\Lib\shelve.py ! t Lib/shutil.py d:\python\Python-2.1\Lib\shutil.py ! t Lib/smtplib.py d:\python\Python-2.1\Lib\smtplib.py ! t Lib/sndhdr.py d:\python\Python-2.1\Lib\sndhdr.py ! t Lib/stat.py d:\python\Python-2.1\Lib\stat.py ! t Lib/symbol.py d:\python\Python-2.1\Lib\symbol.py ! t Lib/telnetlib.py d:\python\Python-2.1\Lib\telnetlib.py ! t Lib/tempfile.py d:\python\Python-2.1\Lib\tempfile.py ! t Lib/token.py d:\python\Python-2.1\Lib\token.py ! t Lib/tokenize.py d:\python\Python-2.1\Lib\tokenize.py ! t Lib/traceback.py d:\python\Python-2.1\Lib\traceback.py ! t Lib/tzparse.py d:\python\Python-2.1\Lib\tzparse.py ! t Lib/urllib.py d:\python\Python-2.1\Lib\urllib.py ! t Lib/urlparse.py d:\python\Python-2.1\Lib\urlparse.py ! t Lib/user.py d:\python\Python-2.1\Lib\user.py ! t Lib/whichdb.py d:\python\Python-2.1\Lib\whichdb.py ! t Lib/whrandom.py d:\python\Python-2.1\Lib\whrandom.py ! t Lib/xdrlib.py d:\python\Python-2.1\Lib\xdrlib.py ! t Lib/xmllib.py d:\python\Python-2.1\Lib\xmllib.py ! t Lib/zipfile.py d:\python\Python-2.1\Lib\zipfile.py ! t Lib/test/pystone.py d:\python\Python-2.1\Lib\test\pystone.py ! t Lib/pstats.py d:\python\Python-2.1\Lib\pstats.py ! t Lib/code.py d:\python\Python-2.1\Lib\code.py ! t Lib/codecs.py d:\python\Python-2.1\Lib\codecs.py ! t Lib/re.py d:\python\Python-2.1\Lib\re.py ! t Lib/sre.py d:\python\Python-2.1\Lib\sre.py ! t Lib/sre_compile.py d:\python\Python-2.1\Lib\sre_compile.py ! t Lib/sre_constants.py d:\python\Python-2.1\Lib\sre_constants.py ! t Lib/sre_parse.py d:\python\Python-2.1\Lib\sre_parse.py ! t Lib/encodings/aliases.py d:\python\Python-2.1\Lib\encodings\aliases.py ! t Lib/encodings/ascii.py d:\python\Python-2.1\Lib\encodings\ascii.py ! t Lib/encodings/charmap.py d:\python\Python-2.1\Lib\encodings\charmap.py ! t Lib/encodings/cp037.py d:\python\Python-2.1\Lib\encodings\cp037.py ! t Lib/encodings/cp1006.py d:\python\Python-2.1\Lib\encodings\cp1006.py ! t Lib/encodings/cp1026.py d:\python\Python-2.1\Lib\encodings\cp1026.py ! t Lib/encodings/cp1250.py d:\python\Python-2.1\Lib\encodings\cp1250.py ! t Lib/encodings/cp1251.py d:\python\Python-2.1\Lib\encodings\cp1251.py ! t Lib/encodings/cp1252.py d:\python\Python-2.1\Lib\encodings\cp1252.py ! t Lib/encodings/cp1253.py d:\python\Python-2.1\Lib\encodings\cp1253.py ! t Lib/encodings/cp1254.py d:\python\Python-2.1\Lib\encodings\cp1254.py ! t Lib/encodings/cp1255.py d:\python\Python-2.1\Lib\encodings\cp1255.py ! t Lib/encodings/cp1256.py d:\python\Python-2.1\Lib\encodings\cp1256.py ! t Lib/encodings/cp1257.py d:\python\Python-2.1\Lib\encodings\cp1257.py ! t Lib/encodings/cp1258.py d:\python\Python-2.1\Lib\encodings\cp1258.py ! t Lib/encodings/cp424.py d:\python\Python-2.1\Lib\encodings\cp424.py ! t Lib/encodings/cp437.py d:\python\Python-2.1\Lib\encodings\cp437.py ! t Lib/encodings/cp500.py d:\python\Python-2.1\Lib\encodings\cp500.py ! t Lib/encodings/cp737.py d:\python\Python-2.1\Lib\encodings\cp737.py ! t Lib/encodings/cp775.py d:\python\Python-2.1\Lib\encodings\cp775.py ! t Lib/encodings/cp850.py d:\python\Python-2.1\Lib\encodings\cp850.py ! t Lib/encodings/cp852.py d:\python\Python-2.1\Lib\encodings\cp852.py ! t Lib/encodings/cp855.py d:\python\Python-2.1\Lib\encodings\cp855.py ! t Lib/encodings/cp856.py d:\python\Python-2.1\Lib\encodings\cp856.py ! t Lib/encodings/cp857.py d:\python\Python-2.1\Lib\encodings\cp857.py ! t Lib/encodings/cp860.py d:\python\Python-2.1\Lib\encodings\cp860.py ! t Lib/encodings/cp861.py d:\python\Python-2.1\Lib\encodings\cp861.py ! t Lib/encodings/cp862.py d:\python\Python-2.1\Lib\encodings\cp862.py ! t Lib/encodings/cp863.py d:\python\Python-2.1\Lib\encodings\cp863.py ! t Lib/encodings/cp864.py d:\python\Python-2.1\Lib\encodings\cp864.py ! t Lib/encodings/cp865.py d:\python\Python-2.1\Lib\encodings\cp865.py ! t Lib/encodings/cp866.py d:\python\Python-2.1\Lib\encodings\cp866.py ! t Lib/encodings/cp869.py d:\python\Python-2.1\Lib\encodings\cp869.py ! t Lib/encodings/cp874.py d:\python\Python-2.1\Lib\encodings\cp874.py ! t Lib/encodings/cp875.py d:\python\Python-2.1\Lib\encodings\cp875.py ! t Lib/encodings/iso8859_1.py d:\python\Python-2.1\Lib\encodings\iso8859_1.py ! t Lib/encodings/iso8859_10.py d:\python\Python-2.1\Lib\encodings\iso8859_10.py ! t Lib/encodings/iso8859_13.py d:\python\Python-2.1\Lib\encodings\iso8859_13.py ! t Lib/encodings/iso8859_14.py d:\python\Python-2.1\Lib\encodings\iso8859_14.py ! t Lib/encodings/iso8859_15.py d:\python\Python-2.1\Lib\encodings\iso8859_15.py ! t Lib/encodings/iso8859_2.py d:\python\Python-2.1\Lib\encodings\iso8859_2.py ! t Lib/encodings/iso8859_3.py d:\python\Python-2.1\Lib\encodings\iso8859_3.py ! t Lib/encodings/iso8859_4.py d:\python\Python-2.1\Lib\encodings\iso8859_4.py ! t Lib/encodings/iso8859_5.py d:\python\Python-2.1\Lib\encodings\iso8859_5.py ! t Lib/encodings/iso8859_6.py d:\python\Python-2.1\Lib\encodings\iso8859_6.py ! t Lib/encodings/iso8859_7.py d:\python\Python-2.1\Lib\encodings\iso8859_7.py ! t Lib/encodings/iso8859_8.py d:\python\Python-2.1\Lib\encodings\iso8859_8.py ! t Lib/encodings/iso8859_9.py d:\python\Python-2.1\Lib\encodings\iso8859_9.py ! t Lib/encodings/koi8_r.py d:\python\Python-2.1\Lib\encodings\koi8_r.py ! t Lib/encodings/latin_1.py d:\python\Python-2.1\Lib\encodings\latin_1.py ! t Lib/encodings/mac_cyrillic.py d:\python\Python-2.1\Lib\encodings\mac_cyrillic.py ! t Lib/encodings/mac_greek.py d:\python\Python-2.1\Lib\encodings\mac_greek.py ! t Lib/encodings/mac_iceland.py d:\python\Python-2.1\Lib\encodings\mac_iceland.py ! t Lib/encodings/mac_latin2.py d:\python\Python-2.1\Lib\encodings\mac_latin2.py ! t Lib/encodings/mac_roman.py d:\python\Python-2.1\Lib\encodings\mac_roman.py ! t Lib/encodings/mac_turkish.py d:\python\Python-2.1\Lib\encodings\mac_turkish.py ! t Lib/encodings/mbcs.py d:\python\Python-2.1\Lib\encodings\mbcs.py ! t Lib/encodings/raw_unicode_escape.py d:\python\Python-2.1\Lib\encodings\raw_unicode_escape.py ! t Lib/encodings/undefined.py d:\python\Python-2.1\Lib\encodings\undefined.py ! t Lib/encodings/unicode_escape.py d:\python\Python-2.1\Lib\encodings\unicode_escape.py ! t Lib/encodings/unicode_internal.py d:\python\Python-2.1\Lib\encodings\unicode_internal.py ! t Lib/encodings/utf_16.py d:\python\Python-2.1\Lib\encodings\utf_16.py ! t Lib/encodings/utf_16_be.py d:\python\Python-2.1\Lib\encodings\utf_16_be.py ! t Lib/encodings/utf_16_le.py d:\python\Python-2.1\Lib\encodings\utf_16_le.py ! t Lib/encodings/utf_8.py d:\python\Python-2.1\Lib\encodings\utf_8.py ! t Lib/encodings/__init__.py d:\python\Python-2.1\Lib\encodings\__init__.py ! t Lib/threading.py d:\python\Python-2.1\Lib\threading.py ! t Lib/atexit.py d:\python\Python-2.1\Lib\atexit.py ! t Lib/UserString.py d:\python\Python-2.1\Lib\UserString.py ! t Lib/warnings.py d:\python\Python-2.1\Lib\warnings.py #===== end of list generated by mklist.py ===== |
From: Finn B. <bc...@us...> - 2001-07-18 11:08:47
|
Update of /cvsroot/jython/jython/installer In directory usw-pr-cvs1:/tmp/cvs-serv31181 Modified Files: mklist.py Log Message: Changed to match my CPython installation. This really should be configurable with an envvar or something. Index: mklist.py =================================================================== RCS file: /cvsroot/jython/jython/installer/mklist.py,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** mklist.py 2001/07/18 11:03:21 1.14 --- mklist.py 2001/07/18 11:08:44 1.15 *************** *** 2,6 **** import glob, os ! PYTHONDIR = r"i:/Python21" def listfiles(root, d, *masks, **kws): --- 2,6 ---- import glob, os ! PYTHONDIR = r"d:/python/Python-2.1" def listfiles(root, d, *masks, **kws): |
From: Finn B. <bc...@us...> - 2001-07-18 11:03:23
|
Update of /cvsroot/jython/jython/installer In directory usw-pr-cvs1:/tmp/cvs-serv30357 Modified Files: mklist.py Log Message: Include the sre sources in the installer. Index: mklist.py =================================================================== RCS file: /cvsroot/jython/jython/installer/mklist.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** mklist.py 2001/03/14 14:30:14 1.13 --- mklist.py 2001/07/18 11:03:21 1.14 *************** *** 208,211 **** --- 208,212 ---- listfiles(None, "org/python/core", *javafiles) listfiles(None, "org/python/modules", *javafiles) + listfiles(None, "org/python/modules/sre", *javafiles) listfiles(None, "org/python/parser", exclude=["python.java"], *javafiles) listfiles(None, "org/python/rmi", *javafiles) |
From: Finn B. <bc...@us...> - 2001-07-18 11:00:10
|
Update of /cvsroot/jython/jython/installer In directory usw-pr-cvs1:/tmp/cvs-serv29700 Modified Files: liftoff.props Log Message: Updated version number. Index: liftoff.props =================================================================== RCS file: /cvsroot/jython/jython/installer/liftoff.props,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** liftoff.props 2001/03/14 14:29:12 1.9 --- liftoff.props 2001/07/18 11:00:07 1.10 *************** *** 2,9 **** product.author=The Jython Team product.string=Jython ! product.version=2.1a1 java.minVersion=1.1 product.root= ! destination.package_prefix=jython-2.1a1 license.licenseText=LICENSE.txt product.readmeText=README.txt --- 2,9 ---- product.author=The Jython Team product.string=Jython ! product.version=2.1a2 java.minVersion=1.1 product.root= ! destination.package_prefix=jython-2.1a2 license.licenseText=LICENSE.txt product.readmeText=README.txt |