Cambia la siguiente linea,
por,
Código (python) [Seleccionar]
c.execute("""insert into personas
values (quien, secname, cuando, lugar)""")
por,
Código (python) [Seleccionar]
c.execute("INSERT INTO personas VALUES ('" + quien + "', '" + secname + "', '" + cuando + "', '" + lugar + "')")