Message 110041 - Python tracker (original) (raw)

Jython 2.5.1 gives the same results as Python:

newton:~ dickinsm$ cat test.py x = "error"

def test(x): class Test(object): x = x print("x: ", x) print("Test.x: ", Test.x)

test("success") newton:~ dickinsm$ jython2.5.1/jython test.py ('x: ', 'success') ('Test.x: ', 'error')