cursor.fetchmany() returns list of lists rather than list of tuples, as might be expected.
import DB2
conn = DB2.connect("db", "xxx", "xxx")
cur = conn.cursor()
ble = cur.execute("create table test (C1 BIGINT)")
ble = cur.execute("insert into test values (1)")
ble = cur.fetchmany()
>>>[[1L]] #should be [(1L,)]
Logged In: YES
user_id=2003727
Originator: YES
I'll fix this in next major version