Known Bugs in JPython (1.0.0)
- The builtin "Exception" tuple contains nulls
- __import__ statement is not thread-safe
- lst = range(5); lst[1:] = lst; lst == [1,1,1,1,1,1]
- Interactively, JPython requests further input when an unterminated string literal is entered (try typing a
single quote followed by Enter). Apparently this problem only shows up on Unix boxes, it can't be replicated on
Windows NT.
- "%012d" % -4 displays '0000000000-4'.
- In JPython, the following function prints 'hello world' when defined interactively: def f(): 'hello world'
- 0.001 prints as 0.0010