From: <fwi...@us...> - 2009-03-02 18:12:27
|
Revision: 6056 http://jython.svn.sourceforge.net/jython/?rev=6056&view=rev Author: fwierzbicki Date: 2009-03-02 18:12:22 +0000 (Mon, 02 Mar 2009) Log Message: ----------- Intital 2.7 tweaks: parser updates, with statement always on, add abc.py. Modified Paths: -------------- trunk/sandbox/wierzbicki/test27/CPythonLib.includes trunk/sandbox/wierzbicki/test27/grammar/Python.g trunk/sandbox/wierzbicki/test27/src/org/python/antlr/GrammarActions.java trunk/sandbox/wierzbicki/test27/src/org/python/compiler/CodeCompiler.java Property Changed: ---------------- trunk/sandbox/wierzbicki/test27/ Property changes on: trunk/sandbox/wierzbicki/test27 ___________________________________________________________________ Modified: svn:externals - CPythonLib -r70085 http://svn.python.org/projects/python/branches/release25-maint/Lib/ + CPythonLib -r70098 http://svn.python.org/projects/python/trunk/Lib/ Modified: trunk/sandbox/wierzbicki/test27/CPythonLib.includes =================================================================== --- trunk/sandbox/wierzbicki/test27/CPythonLib.includes 2009-03-02 15:59:20 UTC (rev 6055) +++ trunk/sandbox/wierzbicki/test27/CPythonLib.includes 2009-03-02 18:12:22 UTC (rev 6056) @@ -16,6 +16,7 @@ _MozillaCookieJar.py _strptime.py _threading_local.py +abc.py aifc.py anydbm.py atexit.py Modified: trunk/sandbox/wierzbicki/test27/grammar/Python.g =================================================================== --- trunk/sandbox/wierzbicki/test27/grammar/Python.g 2009-03-02 15:59:20 UTC (rev 6055) +++ trunk/sandbox/wierzbicki/test27/grammar/Python.g 2009-03-02 18:12:22 UTC (rev 6056) @@ -936,9 +936,9 @@ } ; -//except_clause: 'except' [test [',' test]] +//except_clause: 'except' [test [('as' | ',') test]] except_clause - : EXCEPT (t1=test[expr_contextType.Load] (COMMA t2=test[expr_contextType.Store])?)? COLON suite[!$suite.isEmpty() && $suite::continueIllegal] + : EXCEPT (t1=test[expr_contextType.Load] ((COMMA | AS) t2=test[expr_contextType.Store])?)? COLON suite[!$suite.isEmpty() && $suite::continueIllegal] -> ^(EXCEPT<ExceptHandler>[$EXCEPT, actions.castExpr($t1.tree), actions.castExpr($t2.tree), actions.castStmts($suite.stypes)]) ; @@ -1481,7 +1481,7 @@ } : argument[arguments, kws, gens, true] (COMMA argument[arguments, kws, gens, false])* (COMMA - ( STAR s=test[expr_contextType.Load] (COMMA DOUBLESTAR k=test[expr_contextType.Load])? + ( STAR s=test[expr_contextType.Load] (COMMA argument[arguments, kws, gens, false])* (COMMA DOUBLESTAR k=test[expr_contextType.Load])? | DOUBLESTAR k=test[expr_contextType.Load] )? )? @@ -1735,8 +1735,12 @@ INT : // Hex '0' ('x' | 'X') ( '0' .. '9' | 'a' .. 'f' | 'A' .. 'F' )+ | // Octal - '0' ( '0' .. '7' )* - | '1'..'9' DIGITS* + '0' ('o' | 'O') ( '0' .. '7' )* + | '0' ( '0' .. '7' )* + | // Binary + '0' ('b' | 'B') ( '0' .. '1' )* + | // Decimal + '1'..'9' DIGITS* ; COMPLEX @@ -1755,7 +1759,7 @@ * should make us exit loop not continue. */ STRING - : ('r'|'u'|'ur'|'R'|'U'|'UR'|'uR'|'Ur')? + : ('r'|'u'|'b'|'ur'|'R'|'U'|'B'|'UR'|'uR'|'Ur')? ( '\'\'\'' (options {greedy=false;}:TRIAPOS)* '\'\'\'' | '"""' (options {greedy=false;}:TRIQUOTE)* '"""' | '"' (ESC|~('\\'|'\n'|'"'))* '"' @@ -1769,7 +1773,7 @@ ; STRINGPART - : {partial}?=> ('r'|'u'|'ur'|'R'|'U'|'UR'|'uR'|'Ur')? + : {partial}?=> ('r'|'u'|'b'|'ur'|'R'|'U'|'B'|'UR'|'uR'|'Ur')? ( '\'\'\'' ~('\'\'\'')* | '"""' ~('"""')* ) Modified: trunk/sandbox/wierzbicki/test27/src/org/python/antlr/GrammarActions.java =================================================================== --- trunk/sandbox/wierzbicki/test27/src/org/python/antlr/GrammarActions.java 2009-03-02 15:59:20 UTC (rev 6055) +++ trunk/sandbox/wierzbicki/test27/src/org/python/antlr/GrammarActions.java 2009-03-02 18:12:22 UTC (rev 6056) @@ -350,6 +350,12 @@ if (s.startsWith("0x") || s.startsWith("0X")) { radix = 16; s = s.substring(2, s.length()); + } else if (s.startsWith("0o") || s.startsWith("0O")) { + radix = 8; + s = s.substring(2, s.length()); + } else if (s.startsWith("0b") || s.startsWith("0B")) { + radix = 2; + s = s.substring(2, s.length()); } else if (s.startsWith("0")) { radix = 8; } @@ -415,6 +421,10 @@ int end; boolean ustring = false; + if (quoteChar == 'b' || quoteChar == 'B') { + start++; + } + if (quoteChar == 'u' || quoteChar == 'U') { ustring = true; start++; Modified: trunk/sandbox/wierzbicki/test27/src/org/python/compiler/CodeCompiler.java =================================================================== --- trunk/sandbox/wierzbicki/test27/src/org/python/compiler/CodeCompiler.java 2009-03-02 15:59:20 UTC (rev 6055) +++ trunk/sandbox/wierzbicki/test27/src/org/python/compiler/CodeCompiler.java 2009-03-02 18:12:22 UTC (rev 6056) @@ -2229,10 +2229,6 @@ @Override public Object visitWith(With node) throws Exception { - if (!module.getFutures().withStatementSupported()) { - throw new ParseException("'with' will become a reserved keyword in Python 2.6", node); - } - final Label label_body_start = new Label(); final Label label_body_end = new Label(); final Label label_catch = new Label(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fwi...@us...> - 2009-03-02 19:26:29
|
Revision: 6060 http://jython.svn.sourceforge.net/jython/?rev=6060&view=rev Author: fwierzbicki Date: 2009-03-02 19:26:12 +0000 (Mon, 02 Mar 2009) Log Message: ----------- Added BytesWarning, plus a couple of quick bandaids to get regrtest sort of running. Modified Paths: -------------- trunk/sandbox/wierzbicki/test27/Lib/socket.py trunk/sandbox/wierzbicki/test27/Lib/test/regrtest.py trunk/sandbox/wierzbicki/test27/Lib/warnings.py trunk/sandbox/wierzbicki/test27/src/org/python/core/Py.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PySystemState.java trunk/sandbox/wierzbicki/test27/src/org/python/core/exceptions.java Modified: trunk/sandbox/wierzbicki/test27/Lib/socket.py =================================================================== --- trunk/sandbox/wierzbicki/test27/Lib/socket.py 2009-03-02 18:59:56 UTC (rev 6059) +++ trunk/sandbox/wierzbicki/test27/Lib/socket.py 2009-03-02 19:26:12 UTC (rev 6060) @@ -136,6 +136,10 @@ exception.java_exception = exc return exception +#XXX: just copying from CPython -- someone with better knowledge of socket.py +# should check if this makes sense. +_GLOBAL_DEFAULT_TIMEOUT = object() + MODE_BLOCKING = 'block' MODE_NONBLOCKING = 'nonblock' MODE_TIMEOUT = 'timeout' Modified: trunk/sandbox/wierzbicki/test27/Lib/test/regrtest.py =================================================================== --- trunk/sandbox/wierzbicki/test27/Lib/test/regrtest.py 2009-03-02 18:59:56 UTC (rev 6059) +++ trunk/sandbox/wierzbicki/test27/Lib/test/regrtest.py 2009-03-02 19:26:12 UTC (rev 6060) @@ -553,6 +553,8 @@ else: cfp = cStringIO.StringIO() + #XXX: seems to need setting outside of the try block. + indirect_test = None try: save_stdout = sys.stdout if junit_xml_dir: @@ -605,6 +607,7 @@ print test, "skipped --", msg sys.stdout.flush() if junit_xml_dir: + from test.junit_xml import Tee, write_direct_test write_direct_test(junit_xml_dir, abstest, time.time() - start, 'skipped', sys.exc_info(), stdout=stdout.getvalue(), @@ -629,6 +632,7 @@ traceback.print_exc(file=sys.stdout) sys.stdout.flush() if junit_xml_dir and indirect_test is None: + from test.junit_xml import Tee, write_direct_test write_direct_test(junit_xml_dir, abstest, time.time() - start, 'error', sys.exc_info(), stdout=stdout.getvalue(), Modified: trunk/sandbox/wierzbicki/test27/Lib/warnings.py =================================================================== --- trunk/sandbox/wierzbicki/test27/Lib/warnings.py 2009-03-02 18:59:56 UTC (rev 6059) +++ trunk/sandbox/wierzbicki/test27/Lib/warnings.py 2009-03-02 19:26:12 UTC (rev 6060) @@ -187,6 +187,8 @@ fnl = filename.lower() if fnl.endswith((".pyc", ".pyo")): filename = filename[:-1] + elif fnl.endswith("$py.class"): + filename = filename[:-9] + '.py' else: if module == "__main__": try: @@ -391,12 +393,16 @@ if not _warnings_defaults: simplefilter("ignore", category=PendingDeprecationWarning, append=1) simplefilter("ignore", category=ImportWarning, append=1) - bytes_warning = sys.flags.bytes_warning - if bytes_warning > 1: - bytes_action = "error" - elif bytes_warning: - bytes_action = "default" - else: - bytes_action = "ignore" + + #FIXME: setting to "ignore" just to get moving + bytes_action = "ignore" + #bytes_warning = sys.flags.bytes_warning + #if bytes_warning > 1: + # bytes_action = "error" + #elif bytes_warning: + # bytes_action = "default" + #else: + # bytes_action = "ignore" + simplefilter(bytes_action, category=BytesWarning, append=1) del _warnings_defaults Modified: trunk/sandbox/wierzbicki/test27/src/org/python/core/Py.java =================================================================== --- trunk/sandbox/wierzbicki/test27/src/org/python/core/Py.java 2009-03-02 18:59:56 UTC (rev 6059) +++ trunk/sandbox/wierzbicki/test27/src/org/python/core/Py.java 2009-03-02 19:26:12 UTC (rev 6060) @@ -375,6 +375,12 @@ warning(UnicodeWarning, message); } + public static PyObject BytesWarning; + public static void BytesWarning(String message) { + warning(BytesWarning, message); + } + + private static PyObject warnings_mod; private static PyObject importWarnings() { @@ -731,6 +737,7 @@ RuntimeWarning = initExc("RuntimeWarning", exc, dict); FutureWarning = initExc("FutureWarning", exc, dict); ImportWarning = initExc("ImportWarning", exc, dict); + BytesWarning = initExc("BytesWarning", exc, dict); UnicodeWarning = initExc("UnicodeWarning", exc, dict); // Pre-initialize the PyJavaClass for OutOfMemoryError so when we need Modified: trunk/sandbox/wierzbicki/test27/src/org/python/core/PySystemState.java =================================================================== --- trunk/sandbox/wierzbicki/test27/src/org/python/core/PySystemState.java 2009-03-02 18:59:56 UTC (rev 6059) +++ trunk/sandbox/wierzbicki/test27/src/org/python/core/PySystemState.java 2009-03-02 19:26:12 UTC (rev 6060) @@ -101,6 +101,9 @@ private static boolean initialized = false; + //XXX: placeholder. + public static final boolean py3kwarning = false; + /** The arguments passed to this program on the command line. */ public PyList argv = new PyList(); Modified: trunk/sandbox/wierzbicki/test27/src/org/python/core/exceptions.java =================================================================== --- trunk/sandbox/wierzbicki/test27/src/org/python/core/exceptions.java 2009-03-02 18:59:56 UTC (rev 6059) +++ trunk/sandbox/wierzbicki/test27/src/org/python/core/exceptions.java 2009-03-02 19:26:12 UTC (rev 6060) @@ -166,6 +166,10 @@ buildClass(dict, "ImportWarning", "Warning", "Base class for warnings about probable mistakes in module imports"); + buildClass(dict, "BytesWarning", "Warning", + "Base class for warnings about bytes and buffer related problems, mostly\n" + + "related to conversion from str or comparing to str."); + buildClass(dict, "UnicodeWarning", "Warning", "Base class for warnings about Unicode related problems, mostly\n" + "related to conversion problems."); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Alan K. <jyt...@xh...> - 2009-03-03 11:59:33
|
[Frank] > +#XXX: just copying from CPython -- someone with better knowledge of socket.py > +# should check if this makes sense. > +_GLOBAL_DEFAULT_TIMEOUT = object() > + Hi Frank, That change relates to a greater change in 2.6, namely the introduction of the create_connection method, which enables the use of timeouts across all modules that layer on socket, i.e. urllib, httplib, etc. No way to disable socket timeouts in httplib, etc. http://bugs.python.org/issue2451 http://svn.python.org/view?view=rev&revision=63788 So, this change is really part of a bigger change for 2.6. Which raises the question: when are we targetting 2.6? Regards, Alan. |
From: Frank W. <fwi...@gm...> - 2009-03-03 13:11:52
|
On Tue, Mar 3, 2009 at 6:59 AM, Alan Kennedy <jyt...@xh...> wrote: > [Frank] >> +#XXX: just copying from CPython -- someone with better knowledge of socket.py >> +# should check if this makes sense. >> +_GLOBAL_DEFAULT_TIMEOUT = object() >> + > > Hi Frank, > > That change relates to a greater change in 2.6, namely the > introduction of the create_connection method, which enables the use of > timeouts across all modules that layer on socket, i.e. urllib, > httplib, etc. I only added that to get regrtest working in a proof of concept in the sandbox, when we are doing it for real I'm sure it will be quite different. I don't plan to mess with this sandbox code much more before PyCon. > So, this change is really part of a bigger change for 2.6. > > Which raises the question: when are we targetting 2.6? Given that updating to 2.6 and getting it stable will take a while, and that 2.7 (as I understand) is planned as a fairly modest CPython release, I was thinking of going right for 2.7. If all goes really well, I hope to release Jython 2.7 at or shortly after CPython releases theirs. My plan is to have release candidates of 2.5 going by PyCon in a Release_2_5maint branch, and change trunk to point to 2.7 (thus CPython trunk) at that time so that anyone interested in hacking on 2.7 features can do so easily during the PyCon sprints. -Frank |
From: <fwi...@us...> - 2009-07-07 19:31:57
|
Revision: 6524 http://jython.svn.sourceforge.net/jython/?rev=6524&view=rev Author: fwierzbicki Date: 2009-07-07 19:31:47 +0000 (Tue, 07 Jul 2009) Log Message: ----------- Merged revisions 6061-6065,6071,6074-6082,6084-6088,6090,6093-6120,6124-6132,6135,6137-6142,6148-6150,6152-6159,6161-6167,6169-6175,6177-6185,6187-6189,6193-6194,6198,6203-6205,6208-6214,6218-6221,6224-6226,6230,6232-6236,6241,6243-6267,6269,6277-6283,6286-6292,6295-6306,6309-6338,6340-6341,6343-6359,6361-6374,6376-6385,6387-6397,6407-6462,6464-6470,6473-6475 via svnmerge from https://jython.svn.sourceforge.net/svnroot/jython/trunk/jython Modified Paths: -------------- trunk/sandbox/wierzbicki/test27/.classpath trunk/sandbox/wierzbicki/test27/ACKNOWLEDGMENTS trunk/sandbox/wierzbicki/test27/CPythonLib.includes trunk/sandbox/wierzbicki/test27/CoreExposed.includes trunk/sandbox/wierzbicki/test27/Lib/codeop.py trunk/sandbox/wierzbicki/test27/Lib/compiler/pycodegen.py trunk/sandbox/wierzbicki/test27/Lib/compiler/transformer.py trunk/sandbox/wierzbicki/test27/Lib/javashell.py trunk/sandbox/wierzbicki/test27/Lib/new.py trunk/sandbox/wierzbicki/test27/Lib/os.py trunk/sandbox/wierzbicki/test27/Lib/pkgutil.py trunk/sandbox/wierzbicki/test27/Lib/popen2.py trunk/sandbox/wierzbicki/test27/Lib/posixpath.py trunk/sandbox/wierzbicki/test27/Lib/select.py trunk/sandbox/wierzbicki/test27/Lib/socket.py trunk/sandbox/wierzbicki/test27/Lib/subprocess.py trunk/sandbox/wierzbicki/test27/Lib/tarfile.py trunk/sandbox/wierzbicki/test27/Lib/tempfile.py trunk/sandbox/wierzbicki/test27/Lib/test/check_for_initializer_in_syspath.py trunk/sandbox/wierzbicki/test27/Lib/test/classimport.jar trunk/sandbox/wierzbicki/test27/Lib/test/classimport_Lib.jar trunk/sandbox/wierzbicki/test27/Lib/test/output/test_profile trunk/sandbox/wierzbicki/test27/Lib/test/python_home.policy trunk/sandbox/wierzbicki/test27/Lib/test/regrtest.py trunk/sandbox/wierzbicki/test27/Lib/test/test_ast_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_builtin_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_chdir.py trunk/sandbox/wierzbicki/test27/Lib/test/test_class_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_classpathimporter.py trunk/sandbox/wierzbicki/test27/Lib/test/test_cmd_line.py trunk/sandbox/wierzbicki/test27/Lib/test/test_cmp_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_codeop.py trunk/sandbox/wierzbicki/test27/Lib/test/test_codeop_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_complex_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_cpickle_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_descr.py trunk/sandbox/wierzbicki/test27/Lib/test/test_descr_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_dict_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_dictproxy_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_eof_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_file.py trunk/sandbox/wierzbicki/test27/Lib/test/test_fileno.py trunk/sandbox/wierzbicki/test27/Lib/test/test_float_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_func_syntax_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_import_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_java_integration.py trunk/sandbox/wierzbicki/test27/Lib/test/test_java_subclasses.py trunk/sandbox/wierzbicki/test27/Lib/test/test_java_visibility.py trunk/sandbox/wierzbicki/test27/Lib/test/test_javalist.py trunk/sandbox/wierzbicki/test27/Lib/test/test_largefile.py trunk/sandbox/wierzbicki/test27/Lib/test/test_list_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_marshal.py trunk/sandbox/wierzbicki/test27/Lib/test/test_pkgimport.py trunk/sandbox/wierzbicki/test27/Lib/test/test_repr.py trunk/sandbox/wierzbicki/test27/Lib/test/test_sax.py trunk/sandbox/wierzbicki/test27/Lib/test/test_scope.py trunk/sandbox/wierzbicki/test27/Lib/test/test_set.py trunk/sandbox/wierzbicki/test27/Lib/test/test_set_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_signal.py trunk/sandbox/wierzbicki/test27/Lib/test/test_slots_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_socket.py trunk/sandbox/wierzbicki/test27/Lib/test/test_str_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_subprocess.py trunk/sandbox/wierzbicki/test27/Lib/test/test_subprocess_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_support.py trunk/sandbox/wierzbicki/test27/Lib/test/test_tarfile.py trunk/sandbox/wierzbicki/test27/Lib/test/test_tempfile.py trunk/sandbox/wierzbicki/test27/Lib/test/test_traceback.py trunk/sandbox/wierzbicki/test27/Lib/test/test_unicode.py trunk/sandbox/wierzbicki/test27/Lib/test/test_unicode_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_weakref.py trunk/sandbox/wierzbicki/test27/Lib/threading.py trunk/sandbox/wierzbicki/test27/Lib/unicodedata.py trunk/sandbox/wierzbicki/test27/Lib/xml/parsers/expat.py trunk/sandbox/wierzbicki/test27/Misc/make_binops.py trunk/sandbox/wierzbicki/test27/NEWS trunk/sandbox/wierzbicki/test27/README.txt trunk/sandbox/wierzbicki/test27/Tools/jythonc/SrcGenCompiler.py trunk/sandbox/wierzbicki/test27/ast/asdl_antlr.py trunk/sandbox/wierzbicki/test27/bugtests/classes/test292j.java trunk/sandbox/wierzbicki/test27/build.xml trunk/sandbox/wierzbicki/test27/extlibs/jna-posix.jar trunk/sandbox/wierzbicki/test27/extlibs/jna.jar trunk/sandbox/wierzbicki/test27/grammar/Python.g trunk/sandbox/wierzbicki/test27/grammar/PythonPartial.g trunk/sandbox/wierzbicki/test27/maven/build.xml trunk/sandbox/wierzbicki/test27/registry trunk/sandbox/wierzbicki/test27/src/com/ziclix/python/sql/DataHandler.java trunk/sandbox/wierzbicki/test27/src/com/ziclix/python/sql/Fetch.java trunk/sandbox/wierzbicki/test27/src/com/ziclix/python/sql/JDBC20DataHandler.java trunk/sandbox/wierzbicki/test27/src/com/ziclix/python/sql/Jython22DataHandler.java trunk/sandbox/wierzbicki/test27/src/com/ziclix/python/sql/PyCursor.java trunk/sandbox/wierzbicki/test27/src/com/ziclix/python/sql/handler/InformixDataHandler.java trunk/sandbox/wierzbicki/test27/src/com/ziclix/python/sql/handler/MySQLDataHandler.java trunk/sandbox/wierzbicki/test27/src/com/ziclix/python/sql/handler/OracleDataHandler.java trunk/sandbox/wierzbicki/test27/src/com/ziclix/python/sql/handler/PostgresqlDataHandler.java trunk/sandbox/wierzbicki/test27/src/org/python/Version.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/BaseParser.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/GrammarActions.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/PythonTree.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/PythonTreeAdaptor.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Assert.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/AssertDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Assign.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/AssignDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/AstModule.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Attribute.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/AttributeDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/AugAssign.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/AugAssignDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/BinOp.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/BinOpDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/BoolOp.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/BoolOpDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Break.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/BreakDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Call.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/CallDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ClassDef.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ClassDefDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Compare.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/CompareDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Continue.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ContinueDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Delete.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/DeleteDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Dict.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/DictDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Ellipsis.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/EllipsisDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ExceptHandler.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ExceptHandlerDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Exec.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ExecDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Expr.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ExprDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Expression.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ExpressionDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ExtSlice.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ExtSliceDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/For.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ForDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/FunctionDef.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/FunctionDefDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/GeneratorExp.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/GeneratorExpDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Global.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/GlobalDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/If.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/IfDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/IfExp.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/IfExpDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Import.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ImportDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ImportFrom.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ImportFromDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Index.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/IndexDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Interactive.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/InteractiveDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Lambda.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/LambdaDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/List.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ListComp.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ListCompDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ListDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Module.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ModuleDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Name.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/NameDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Num.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/NumDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Pass.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/PassDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Print.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/PrintDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Raise.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/RaiseDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Repr.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ReprDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Return.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/ReturnDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Slice.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/SliceDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Str.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/StrDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Subscript.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/SubscriptDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Suite.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/SuiteDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/TryExcept.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/TryExceptDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/TryFinally.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/TryFinallyDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Tuple.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/TupleDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/UnaryOp.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/UnaryOpDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/While.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/WhileDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/With.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/WithDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/Yield.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/YieldDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/alias.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/aliasDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/arguments.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/argumentsDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/comprehension.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/comprehensionDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/keyword.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ast/keywordDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/AddDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/AndDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/AugLoadDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/AugStoreDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/BitAndDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/BitOrDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/BitXorDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/DelDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/DivDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/EqDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/FloorDivDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/GtDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/GtEDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/InDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/InvertDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/IsDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/IsNotDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/LShiftDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/LoadDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/LtDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/LtEDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/ModDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/MultDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/NotDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/NotEqDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/NotInDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/OrDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/ParamDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/PowDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/RShiftDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/StoreDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/SubDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/UAddDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/op/USubDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/compiler/ClassConstants.java trunk/sandbox/wierzbicki/test27/src/org/python/compiler/ClassFile.java trunk/sandbox/wierzbicki/test27/src/org/python/compiler/Code.java trunk/sandbox/wierzbicki/test27/src/org/python/compiler/CodeCompiler.java trunk/sandbox/wierzbicki/test27/src/org/python/compiler/Future.java trunk/sandbox/wierzbicki/test27/src/org/python/compiler/Module.java trunk/sandbox/wierzbicki/test27/src/org/python/core/ArgParser.java trunk/sandbox/wierzbicki/test27/src/org/python/core/AstList.java trunk/sandbox/wierzbicki/test27/src/org/python/core/BaseSet.java trunk/sandbox/wierzbicki/test27/src/org/python/core/BytecodeLoader.java trunk/sandbox/wierzbicki/test27/src/org/python/core/ClasspathPyImporter.java trunk/sandbox/wierzbicki/test27/src/org/python/core/ClasspathPyImporterDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/CompilerFlags.java trunk/sandbox/wierzbicki/test27/src/org/python/core/FunctionThread.java trunk/sandbox/wierzbicki/test27/src/org/python/core/InitModule.java trunk/sandbox/wierzbicki/test27/src/org/python/core/JavaImportHelper.java trunk/sandbox/wierzbicki/test27/src/org/python/core/ParserFacade.java trunk/sandbox/wierzbicki/test27/src/org/python/core/Py.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyArray.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyArrayDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyBaseCode.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyBaseExceptionDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyBaseString.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyBooleanDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyBuiltinMethod.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyBuiltinMethodSet.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyBytecode.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyCallIter.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyClass.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyClassMethodDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyCode.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyComplex.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyComplexDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyDictProxy.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyDictionary.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyDictionaryDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyEnumerateDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyException.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyFastSequenceIter.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyFile.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyFileDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyFloat.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyFloatDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyFrame.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyFrozenSetDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyFunction.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyFunctionTable.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyGenerator.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyInstance.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyInteger.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyIntegerDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyJavaType.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyList.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyListDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyLong.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyLongDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyMethod.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyModuleDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyObject.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyObjectDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyPropertyDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyReflectedFunction.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PySequence.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PySequenceIter.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PySequenceList.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PySet.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PySetDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PySlice.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PySliceDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyString.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyStringDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyStringMap.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PySuperDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PySystemState.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyTableCode.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyTraceback.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyTuple.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyTupleDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyType.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyTypeDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyUnicode.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyUnicodeDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyXRange.java trunk/sandbox/wierzbicki/test27/src/org/python/core/ReflectedArgs.java trunk/sandbox/wierzbicki/test27/src/org/python/core/StdoutWrapper.java trunk/sandbox/wierzbicki/test27/src/org/python/core/SyspathJavaLoader.java trunk/sandbox/wierzbicki/test27/src/org/python/core/__builtin__.java trunk/sandbox/wierzbicki/test27/src/org/python/core/codecs.java trunk/sandbox/wierzbicki/test27/src/org/python/core/exceptions.java trunk/sandbox/wierzbicki/test27/src/org/python/core/imp.java trunk/sandbox/wierzbicki/test27/src/org/python/core/io/BufferedIOMixin.java trunk/sandbox/wierzbicki/test27/src/org/python/core/io/BufferedWriter.java trunk/sandbox/wierzbicki/test27/src/org/python/core/io/FileIO.java trunk/sandbox/wierzbicki/test27/src/org/python/core/io/IOBase.java trunk/sandbox/wierzbicki/test27/src/org/python/core/io/LineBufferedWriter.java trunk/sandbox/wierzbicki/test27/src/org/python/core/io/StreamIO.java trunk/sandbox/wierzbicki/test27/src/org/python/core/io/UniversalIOWrapper.java trunk/sandbox/wierzbicki/test27/src/org/python/core/packagecache/CachedJarsPackageManager.java trunk/sandbox/wierzbicki/test27/src/org/python/core/packagecache/PackageManager.java trunk/sandbox/wierzbicki/test27/src/org/python/core/packagecache/PathPackageManager.java trunk/sandbox/wierzbicki/test27/src/org/python/core/util/ConcurrentHashSet.java trunk/sandbox/wierzbicki/test27/src/org/python/core/util/FileUtil.java trunk/sandbox/wierzbicki/test27/src/org/python/core/util/StringUtil.java trunk/sandbox/wierzbicki/test27/src/org/python/core/util/importer.java trunk/sandbox/wierzbicki/test27/src/org/python/expose/generate/ExposeTask.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/PyTeeIterator.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/Setup.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_codecs.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_collections/PyDefaultDictDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_collections/PyDeque.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_collections/PyDequeDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_csv/PyDialectDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_csv/PyReader.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_functools/PyPartialDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_marshal.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_weakref/AbstractReference.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_weakref/GlobalRef.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_weakref/ReferenceType.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_weakref/ReferenceTypeDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_weakref/WeakrefModule.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/binascii.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/cPickle.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/cStringIO.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/imp.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/itertools.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/math.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/random/PyRandom.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/random/PyRandomDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/sre/PatternObject.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/sre/SRE_STATE.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/thread/PyLocalDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/time/Time.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/zipimport/zipimporter.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/zipimport/zipimporterDerived.java trunk/sandbox/wierzbicki/test27/src/org/python/util/Generic.java trunk/sandbox/wierzbicki/test27/src/org/python/util/InteractiveConsole.java trunk/sandbox/wierzbicki/test27/src/org/python/util/InteractiveInterpreter.java trunk/sandbox/wierzbicki/test27/src/org/python/util/JLineConsole.java trunk/sandbox/wierzbicki/test27/src/org/python/util/JythoncAntTask.java trunk/sandbox/wierzbicki/test27/src/org/python/util/PythonInterpreter.java trunk/sandbox/wierzbicki/test27/src/org/python/util/jython.java trunk/sandbox/wierzbicki/test27/src/shell/jython trunk/sandbox/wierzbicki/test27/src/shell/jython.bat trunk/sandbox/wierzbicki/test27/src/templates/README.txt trunk/sandbox/wierzbicki/test27/src/templates/object.derived trunk/sandbox/wierzbicki/test27/tests/java/javatests/Dict2JavaTest.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/antlr/PythonTreeTester.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/expose/generate/MethodExposerTest.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/CustomizableMapHolder.java trunk/sandbox/wierzbicki/test27/tests/shell/test-jython.sh Added Paths: ----------- trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib/ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib/readme.txt trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib-python/ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib-python/readme.txt trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/web.xml trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/demo_app.py trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/readme.txt trunk/sandbox/wierzbicki/test27/Lib/SimpleHTTPServer.py trunk/sandbox/wierzbicki/test27/Lib/distutils/command/build_scripts.py trunk/sandbox/wierzbicki/test27/Lib/distutils/command/install_scripts.py trunk/sandbox/wierzbicki/test27/Lib/gettext.py trunk/sandbox/wierzbicki/test27/Lib/mailbox.py trunk/sandbox/wierzbicki/test27/Lib/modjy/ trunk/sandbox/wierzbicki/test27/Lib/modjy/__init__.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_exceptions.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_impl.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_log.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_params.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_publish.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_response.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_write.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_wsgi.py trunk/sandbox/wierzbicki/test27/Lib/netrc.py trunk/sandbox/wierzbicki/test27/Lib/test/badsyntax_eof1.py trunk/sandbox/wierzbicki/test27/Lib/test/bug1126/ trunk/sandbox/wierzbicki/test27/Lib/test/bug1126/bug1126.jar trunk/sandbox/wierzbicki/test27/Lib/test/call_overridden_method.py trunk/sandbox/wierzbicki/test27/Lib/test/module_deleter.py trunk/sandbox/wierzbicki/test27/Lib/test/output/test_types_pyc trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/ trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/ trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/README trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/__init__.py trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/test_builtin_pyc.pyc trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/test_exceptions_pyc.pyc trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/test_types_pyc.pyc trunk/sandbox/wierzbicki/test27/Lib/test/test_compile_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_decorators_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_dircache.py trunk/sandbox/wierzbicki/test27/Lib/test/test_nt_paths_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_old_mailbox.py trunk/sandbox/wierzbicki/test27/Lib/test/test_pbcvm.py trunk/sandbox/wierzbicki/test27/Lib/test/test_popen2.py trunk/sandbox/wierzbicki/test27/Lib/test/test_pprint.py trunk/sandbox/wierzbicki/test27/Lib/test/test_pythoninterpreter_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_seq_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_shutil.py trunk/sandbox/wierzbicki/test27/Lib/test/test_threading_jy.py trunk/sandbox/wierzbicki/test27/Lib/test/test_univnewlines.py trunk/sandbox/wierzbicki/test27/Lib/test/test_urllib2.py trunk/sandbox/wierzbicki/test27/Lib/test/test_weakref_jy.py trunk/sandbox/wierzbicki/test27/Lib/urllib.py trunk/sandbox/wierzbicki/test27/extlibs/jline-0.9.95-SNAPSHOT.jar trunk/sandbox/wierzbicki/test27/src/com/xhaus/ trunk/sandbox/wierzbicki/test27/src/com/xhaus/modjy/ trunk/sandbox/wierzbicki/test27/src/com/xhaus/modjy/ModjyJServlet.java trunk/sandbox/wierzbicki/test27/src/org/python/compiler/LegacyCompiler.java trunk/sandbox/wierzbicki/test27/src/org/python/compiler/MTime.java trunk/sandbox/wierzbicki/test27/src/org/python/core/AnnotationReader.java trunk/sandbox/wierzbicki/test27/src/org/python/core/CodeBootstrap.java trunk/sandbox/wierzbicki/test27/src/org/python/core/CodeFlag.java trunk/sandbox/wierzbicki/test27/src/org/python/core/CodeLoader.java trunk/sandbox/wierzbicki/test27/src/org/python/core/CompileMode.java trunk/sandbox/wierzbicki/test27/src/org/python/core/CompilerFacade.java trunk/sandbox/wierzbicki/test27/src/org/python/core/FutureFeature.java trunk/sandbox/wierzbicki/test27/src/org/python/core/Pragma.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PragmaReceiver.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyFileWriter.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyRunnableBootstrap.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PythonCodeBundle.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PythonCompiler.java trunk/sandbox/wierzbicki/test27/src/org/python/util/jline-keybindings.properties trunk/sandbox/wierzbicki/test27/tests/java/org/python/core/ trunk/sandbox/wierzbicki/test27/tests/java/org/python/core/PySystemState_registry_Test.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/Child2.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/OwnMethodCaller.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/RespectJavaAccessibility.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/identity/ trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/identity/IdentityObject.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/identity/IdentityTest.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/props/ trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/props/BeanPropertyTest.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/props/PropShadow.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/props/Readonly.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/util/jythonTest.java trunk/sandbox/wierzbicki/test27/tests/modjy/ trunk/sandbox/wierzbicki/test27/tests/modjy/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/build.xml trunk/sandbox/wierzbicki/test27/tests/modjy/empty.txt trunk/sandbox/wierzbicki/test27/tests/modjy/java/ trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/ trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/ trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestAppInvocation.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestBase.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestContentHeaders.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestEnviron.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestHeaders.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestReturnIterable.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestWSGIStreams.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestWebInf.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestWriteCallable.java trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/ trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/add_zips.pth trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/do_import.pth trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/ trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/web/ trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/web/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/web/handlers/ trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/web/handlers/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/web/handlers/wsgi_handlers.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/script_name_path_info.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/test_lib/ trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/test_lib/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/test_lib/some_libs.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/test_modules.zip trunk/sandbox/wierzbicki/test27/tests/modjy/lines.txt trunk/sandbox/wierzbicki/test27/tests/modjy/readme.txt trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/ trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/content_header_tests.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/environ_tests.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/header_tests.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/return_tests.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/simple_app.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/stream_tests.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/web_inf_tests.py trunk/sandbox/wierzbicki/test27/tests/policy/ trunk/sandbox/wierzbicki/test27/tests/policy/nowrite.policy trunk/sandbox/wierzbicki/test27/tests/policy/run.sh trunk/sandbox/wierzbicki/test27/tests/python/ trunk/sandbox/wierzbicki/test27/tests/python/identity_test.py trunk/sandbox/wierzbicki/test27/tests/python/prop_test.py Removed Paths: ------------- trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib/ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib/readme.txt trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib-python/ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib-python/readme.txt trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/web.xml trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/demo_app.py trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/readme.txt trunk/sandbox/wierzbicki/test27/Lib/modjy/__init__.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_exceptions.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_impl.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_log.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_params.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_publish.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_response.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_write.py trunk/sandbox/wierzbicki/test27/Lib/modjy/modjy_wsgi.py trunk/sandbox/wierzbicki/test27/Lib/test/bug1126/bug1126.jar trunk/sandbox/wierzbicki/test27/Lib/test/cfgparser.1 trunk/sandbox/wierzbicki/test27/Lib/test/eof_fodder7.py trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/ trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/README trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/__init__.py trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/test_builtin_pyc.pyc trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/test_exceptions_pyc.pyc trunk/sandbox/wierzbicki/test27/Lib/test/pbcvm/test/test_types_pyc.pyc trunk/sandbox/wierzbicki/test27/Lib/test/test_asynchat.py trunk/sandbox/wierzbicki/test27/Lib/test/test_doctest.py trunk/sandbox/wierzbicki/test27/extlibs/jline-0.9.94.jar trunk/sandbox/wierzbicki/test27/extlibs/modjy_0_25_3.zip trunk/sandbox/wierzbicki/test27/src/com/xhaus/modjy/ trunk/sandbox/wierzbicki/test27/src/com/xhaus/modjy/ModjyJServlet.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ExpressionParser.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/InteractiveParser.java trunk/sandbox/wierzbicki/test27/src/org/python/antlr/ModuleParser.java trunk/sandbox/wierzbicki/test27/src/org/python/compiler/pbc/ trunk/sandbox/wierzbicki/test27/src/org/python/core/APIReader.java trunk/sandbox/wierzbicki/test27/src/org/python/core/MergeState.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyObjectArray.java trunk/sandbox/wierzbicki/test27/src/org/python/core/PyObjectList.java trunk/sandbox/wierzbicki/test27/src/org/python/modules/_newmodule.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/core/PySystemState_registry_Test.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/identity/IdentityObject.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/identity/IdentityTest.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/props/BeanPropertyTest.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/props/PropShadow.java trunk/sandbox/wierzbicki/test27/tests/java/org/python/tests/props/Readonly.java trunk/sandbox/wierzbicki/test27/tests/modjy/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/build.xml trunk/sandbox/wierzbicki/test27/tests/modjy/empty.txt trunk/sandbox/wierzbicki/test27/tests/modjy/java/ trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/ trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/ trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestAppInvocation.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestBase.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestContentHeaders.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestEnviron.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestHeaders.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestReturnIterable.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestWSGIStreams.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestWebInf.java trunk/sandbox/wierzbicki/test27/tests/modjy/java/com/xhaus/modjy/ModjyTestWriteCallable.java trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/ trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/add_zips.pth trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/do_import.pth trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/ trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/web/ trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/web/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/web/handlers/ trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/web/handlers/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/mock_framework/web/handlers/wsgi_handlers.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/script_name_path_info.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/test_lib/ trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/test_lib/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/test_lib/some_libs.py trunk/sandbox/wierzbicki/test27/tests/modjy/lib_python_folder/test_modules.zip trunk/sandbox/wierzbicki/test27/tests/modjy/lines.txt trunk/sandbox/wierzbicki/test27/tests/modjy/readme.txt trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/ trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/__init__.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/content_header_tests.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/environ_tests.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/header_tests.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/return_tests.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/simple_app.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/stream_tests.py trunk/sandbox/wierzbicki/test27/tests/modjy/test_apps_dir/web_inf_tests.py trunk/sandbox/wierzbicki/test27/tests/policy/nowrite.policy trunk/sandbox/wierzbicki/test27/tests/policy/run.sh trunk/sandbox/wierzbicki/test27/tests/python/identity_test.py trunk/sandbox/wierzbicki/test27/tests/python/prop_test.py Property Changed: ---------------- trunk/sandbox/wierzbicki/test27/ Property changes on: trunk/sandbox/wierzbicki/test27 ___________________________________________________________________ Modified: svn:ignore - .externalToolBuilders .classpath .project *.ipr *.iws *.iml build dist ant.properties bin cachedir .settings + .externalToolBuilders .classpath .project *.ipr *.iws *.iml build dist ant.properties bin cachedir .settings profile.txt Modified: svnmerge-integrated - /branches/pbcvm:1-6045 /trunk/jython:1-6052 + /branches/pbcvm:1-6045 /trunk/jython:1-6483 Modified: trunk/sandbox/wierzbicki/test27/.classpath =================================================================== --- trunk/sandbox/wierzbicki/test27/.classpath 2009-07-07 19:08:37 UTC (rev 6523) +++ trunk/sandbox/wierzbicki/test27/.classpath 2009-07-07 19:31:47 UTC (rev 6524) @@ -6,16 +6,17 @@ <classpathentry kind="src" path="bugtests/classes"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/3"/> - <classpathentry kind="lib" path="extlibs/jline-0.9.94.jar"/> + <classpathentry kind="lib" path="extlibs/jline-0.9.95-SNAPSHOT.jar"/> <classpathentry kind="lib" path="extlibs/junit-3.8.2.jar"/> <classpathentry kind="lib" path="extlibs/libreadline-java-0.8.jar"/> <classpathentry kind="lib" path="extlibs/mysql-connector-java-5.1.6.jar"/> <classpathentry kind="lib" path="extlibs/postgresql-8.3-603.jdbc4.jar"/> <classpathentry kind="lib" path="extlibs/servlet-api-2.5.jar"/> <classpathentry kind="var" path="ANT_HOME/lib/ant.jar"/> - <classpathentry kind="lib" path="extlibs/antlr-3.1.1-runtime.jar"/> + <classpathentry kind="lib" path="extlibs/antlr-runtime-3.1.2.jar"/> <classpathentry kind="lib" path="extlibs/asm-3.1.jar"/> <classpathentry kind="lib" path="extlibs/asm-commons-3.1.jar"/> <classpathentry kind="lib" path="extlibs/constantine-0.4.jar"/> + <classpathentry kind="lib" path="extlibs/jna-posix.jar"/> <classpathentry kind="output" path="bugtests/classes"/> </classpath> Modified: trunk/sandbox/wierzbicki/test27/ACKNOWLEDGMENTS =================================================================== --- trunk/sandbox/wierzbicki/test27/ACKNOWLEDGMENTS 2009-07-07 19:08:37 UTC (rev 6523) +++ trunk/sandbox/wierzbicki/test27/ACKNOWLEDGMENTS 2009-07-07 19:31:47 UTC (rev 6524) @@ -31,6 +31,8 @@ Cyrille Morvan has written the code for the Jythonc ant task. + Alan Kennedy contributed modjy, which bridges WSGI to the Servlet API + A huge thanks goes to all the members of the jpython/jython mailing lists. Other folks who have contributed to JPython and Jython in ways large and small, in no particular order: @@ -66,6 +68,21 @@ Nathan Franzen Aleks Totic Randolph Brown + Geoffrey French + Tobias Ivarsson + Lino Mastrodomenico + S\xE9bastien Boisg\xE9rault + Jim Baker + Charlie Groves + Otmar Humbel + Philip Jenvey + Nicholas Riley + Frank Wierzbicki + Khalid Zuberi + Sean McGrath + Clark Updike + Leonardo Soto + James Robinson Local Variables: mode: indented-text Modified: trunk/sandbox/wierzbicki/test27/CPythonLib.includes =================================================================== --- trunk/sandbox/wierzbicki/test27/CPythonLib.includes 2009-07-07 19:08:37 UTC (rev 6523) +++ trunk/sandbox/wierzbicki/test27/CPythonLib.includes 2009-07-07 19:31:47 UTC (rev 6524) @@ -135,6 +135,7 @@ SimpleXMLRPCServer.py site.py site-packages/README +smtpd.py smtplib.py sndhdr.py SocketServer.py @@ -167,6 +168,7 @@ weakref.py whichdb.py whrandom.py +wsgiref.egg-info wsgiref/*.py xdrlib.py xmllib.py Modified: trunk/sandbox/wierzbicki/test27/CoreExposed.includes =================================================================== --- trunk/sandbox/wierzbicki/test27/CoreExposed.includes 2009-07-07 19:08:37 UTC (rev 6523) +++ trunk/sandbox/wierzbicki/test27/CoreExposed.includes 2009-07-07 19:31:47 UTC (rev 6524) @@ -6,6 +6,7 @@ org/python/core/PyBoolean.class org/python/core/PyBuiltinCallable.class org/python/core/PyCell.class +org/python/core/PyClass.class org/python/core/PyClassMethod.class org/python/core/PyClassMethodDescr.class org/python/core/PyComplex.class @@ -19,6 +20,7 @@ org/python/core/PyFrozenSet.class org/python/core/PyFunction.class org/python/core/PyGenerator.class +org/python/core/PyInstance.class org/python/core/PyInteger.class org/python/core/PyList.class org/python/core/PyLong.class Deleted: trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib/readme.txt =================================================================== --- trunk/jython/Demo/modjy_webapp/WEB-INF/lib/readme.txt 2009-06-16 17:18:28 UTC (rev 6475) +++ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib/readme.txt 2009-07-07 19:31:47 UTC (rev 6524) @@ -1 +0,0 @@ -The jython.jar file should be placed in this directory. Copied: trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib/readme.txt (from rev 6475, trunk/jython/Demo/modjy_webapp/WEB-INF/lib/readme.txt) =================================================================== --- trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib/readme.txt (rev 0) +++ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib/readme.txt 2009-07-07 19:31:47 UTC (rev 6524) @@ -0,0 +1 @@ +The jython.jar file should be placed in this directory. Deleted: trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib-python/readme.txt =================================================================== --- trunk/jython/Demo/modjy_webapp/WEB-INF/lib-python/readme.txt 2009-06-16 17:18:28 UTC (rev 6475) +++ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib-python/readme.txt 2009-07-07 19:31:47 UTC (rev 6524) @@ -1,11 +0,0 @@ -The WEB-INF/lib-python directory, if it exists, is automatically added -to sys.path. Adding jython modules into this directory will make them -available for import into your application. - -If you add your modules in a subdirectory, then be sure that that -subdirectory contains an __init__.py file, so that the subdirectory -is considered to be a package. - -See here for more details. -http://www.rexx.com/~dkuhlman/python_101/python_101.html#SECTION004540000000000000000 -http://www.python.org/doc/essays/packages.html Copied: trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib-python/readme.txt (from rev 6475, trunk/jython/Demo/modjy_webapp/WEB-INF/lib-python/readme.txt) =================================================================== --- trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib-python/readme.txt (rev 0) +++ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/lib-python/readme.txt 2009-07-07 19:31:47 UTC (rev 6524) @@ -0,0 +1,11 @@ +The WEB-INF/lib-python directory, if it exists, is automatically added +to sys.path. Adding jython modules into this directory will make them +available for import into your application. + +If you add your modules in a subdirectory, then be sure that that +subdirectory contains an __init__.py file, so that the subdirectory +is considered to be a package. + +See here for more details. +http://www.rexx.com/~dkuhlman/python_101/python_101.html#SECTION004540000000000000000 +http://www.python.org/doc/essays/packages.html Deleted: trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/web.xml =================================================================== --- trunk/jython/Demo/modjy_webapp/WEB-INF/web.xml 2009-06-16 17:18:28 UTC (rev 6475) +++ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/web.xml 2009-07-07 19:31:47 UTC (rev 6524) @@ -1,85 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!DOCTYPE web-app - PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" - "http://java.sun.com/dtd/web-app_2_3.dtd"> -<web-app> - - <display-name>modjy demo application</display-name> - <description> - modjy WSGI demo application - </description> - - <servlet> - <servlet-name>modjy</servlet-name> - <servlet-class>com.xhaus.modjy.ModjyJServlet</servlet-class> - <init-param> - <param-name>python.home</param-name> - <param-value>C:/jython2.5</param-value> - </init-param> -<!-- - There are two different ways you can specify an application to modjy - 1. Using the app_import_name mechanism - 2. Using a combination of app_directory/app_filename/app_callable_name - Examples of both are given below - See the documenation for more details. - http://modjy.xhaus.com/locating.html#locating_callables ---> -<!-- - This is the app_import_name mechanism. If you specify a value - for this variable, then it will take precedence over the other mechanism - <init-param> - <param-name>app_import_name</param-name> - <param-value>my_wsgi_module.my_handler_class().handler_method</param-value> - </init-param> ---> -<!-- - And this is the app_directory/app_filename/app_callable_name combo - The defaults for these three variables are ""/application.py/handler - So if you specify no values at all for any of app_* variables, then modjy - will by default look for "handler" in "application.py" in the servlet - context root. - <init-param> - <param-name>app_directory</param-name> - <param-value>some_sub_directory</param-value> - </init-param> ---> - <init-param> - <param-name>app_filename</param-name> - <param-value>demo_app.py</param-value> - </init-param> -<!-- - Supply a value for this parameter if you want your application - callable to have a different name than the default. - <init-param> - <param-name>app_callable_name</param-name> - <param-value>my_handler_func</param-value> - </init-param> ---> - <!-- Do you want application callables to be cached? --> - <init-param> - <param-name>cache_callables</param-name> - <param-value>1</param-value> - </init-param> - <!-- Should the application be reloaded if it's .py file changes? --> - <!-- Does not work with the app_import_name mechanism --> - <init-param> - <param-name>reload_on_mod</param-name> - <param-value>1</param-value> - </init-param> - <init-param> - <param-name>log_level</param-name> - <param-value>debug</param-value> -<!-- <param-value>info</param-value> --> -<!-- <param-value>warn</param-value> --> -<!-- <param-value>error</param-value> --> -<!-- <param-value>fatal</param-value> --> - </init-param> - <load-on-startup>1</load-on-startup> - </servlet> - - <servlet-mapping> - <servlet-name>modjy</servlet-name> - <url-pattern>/*</url-pattern> - </servlet-mapping> - -</web-app> Copied: trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/web.xml (from rev 6475, trunk/jython/Demo/modjy_webapp/WEB-INF/web.xml) =================================================================== --- trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/web.xml (rev 0) +++ trunk/sandbox/wierzbicki/test27/Demo/modjy_webapp/WEB-INF/web.xml 2009-07-07 19:31:47 UTC (rev 6524) @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!DOCTYPE web-app + PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" + "http://java.sun.com/dtd/web-app_2_3.dtd"> +<web-app> + + <display-name>modjy demo application</display-name> + <description> + modjy WSGI demo application + </description> + + <servlet> + <servlet-name>modjy</servlet-name> + <servlet-class>com.xhaus.modjy.ModjyJServlet</servlet-class> + <init-param> + <param-name>python.home</param-name> + <param-value>C:/jython2.5</param-value> + </init-param> +<!-- + There are two different ways you can specify an application to modjy + 1. Using the app_import_name mechanism + 2. Using a combination of app_directory/app_filename/app_callable_name + Examples of both are given below + See the documenation for more details. + http://modjy.xhaus.com/locating.html#locating_callables +--> +<!-- + This is the app_import_name mechanism. If you specify a value + for this variable, then it will take precedence over the other mechanism + <init-param> + <param-name>app_import_name</param-name> + <param-value>my_wsgi_module.my_handler_class().handler_method</param-value> + </init-param> +--> +<!-- + And this is the app_directory/app_filename/app_callable_name combo + The defaults for these three variables are ""/application.py/handler + So if you specify no values at all for any of app_* variables, then modjy + will by default look for "handler" in "application.py" in the servlet + context root. + <init-param> + <param-name>app_directory</param-name> + <param-value>some_sub_directory</param-value> + </init-param> +--> + <init-param> + <param-name>app_filename</param-name> + <param-value>demo_app.py</param-value> + </init-param> +<!-- + Supply a value for this parameter if you want your application + callable to have a different name than the default. + <init-param> + <param-name>app_callable_name</param-name> + <param-value>my_handler_func</param-value> + </init-param> +--> + <!-- Do you want application callables to be cached? --> + <init-param> + <param-name>cache_callables</param-name> + <param-value>1</param-value> + </init-param> + <!-- Should the application be reloaded if it's .py file changes? --> + <!-- Does not work with the app_import_name mechanism --> + <init-param> + <param-name>reload_on_mod</param-name> + <param-value>1</param-value> + </init-param> + <init-param> + <param-name>log_level</param-name> + <param-value>debug</param-value> +<!-- <param-value>info</param-value> --> +<!-- <param-value>warn</param-value> --> +<!-- <param-value>error</param-value> --> +<!-- <param-value>fatal</param-value> --> + </init-param> + <load-on-startup>1</load-on-startup> + </servlet> + + <servlet-mapping> + <servlet-name>modjy</servlet-name> + <url-pattern>/*</... [truncated message content] |