I'm using P4 python version, and tried to get the difference of two files. However, it only returns filename and version.
l=p4.run("diff2","//a/b/c.h#42","//a/b/c.h#11")
print(l)
and the output is
[{'status': 'content', 'depotFile': '//a/b/c.h', 'rev': '42', 'type': 'text', 'depotFile2': '//a/b/c.h', 'rev2': '11', 'type2': 'text'}]
How to get which line is added, removed or modified?