Jython commits

RevisionAuthorDateDescription
5859otmarhumbel06 Jan 2009 16:58:40

- using ${dist.dir} for both jython.jar and jython-complete.jar
- no unjar of jarjar.jar (since it does not exist any more)

5858fwierzbicki06 Jan 2009 15:57:41

Making the package names point to the raw original package names in source and
making the jarjar step process everything in one step so the package mangling
happens on our source as well as the included jars for jython-complete.jar.

5857fwierzbicki05 Jan 2009 21:11:04

Remove some unused methods.

5856fwierzbicki05 Jan 2009 16:05:05

use text instead of getText() to handle null.

5855amak05 Jan 2009 14:58:51

Fixed a bug where connect timeouts were not being honoured when set through socket.setdefaulttimeout()
http://bugs.jython.org/issue1218

5854amak05 Jan 2009 14:47:25

Fixed a bug where connect timeouts were not being honoured when set through socket.setdefaulttimeout()
http://bugs.jython.org/issue1218

5853fwierzbicki05 Jan 2009 14:06:58

Merged with py3k site.py

5852fwierzbicki05 Jan 2009 13:48:54

Just enough patchwork to get this thing compiling.

5851fwierzbicki05 Jan 2009 12:59:06

Just enough to get ast.arguments constructor calls passing.

5850fwierzbicki05 Jan 2009 08:51:12

Raise now takes only 2 args.

5849fwierzbicki05 Jan 2009 08:39:31

print, exec, repr no longer exist.

5848fwierzbicki05 Jan 2009 08:16:44

Initial switchover to 3.0 Python.asdl. Doesn't compiler yet.

5847cgroves05 Jan 2009 02:12:43

test302 - Move to test_pep263_jy

This adds a check for the encoding declared by the source file actually
matching up with what we were getting out of it, and switches the default
encoding to ascii to follow CPython. CPython assumes utf-8 in some single
compilation contexts, and this uses the same parser algorithm everywhere, so I
made a small change to test_doctest since Jython is throwing a SyntaxError on
utf-8 strings to a single compilation.