You should be able to index the last field of the first record like so:
from org.das2.qds.examples import Schemes
ds= Schemes.eventsList()
print ds
print ds[0,-1]
There's an index out of bounds error, as if the Jython index code doesn't handle the negative index properly.