Hi Neil,
thanks a lot - though late - for your hint! It wasn't clear to me that "Value table" really means it's a data type, though the table column states 'data type' in the header. Thought of an explanation like "table of values" - maybe a normal python list.
I couldn't use your example as given, as the "insertRow"-method doesn't exist, but addRow.
vTab = arcpy.ValueTable(2)
vTab.addRow("ShapeA.shp" + " 1")
vTab.addRow("ShapeB.shp" + " 2")
arcpy.Integrate_management(vTab,0.01)
Thanks again,
Torsten