a little script to ease debugging of perforce's python output

This commit is contained in:
Simon Hausmann
2007-02-08 23:00:19 +01:00
parent 6304b259c3
commit dd6a102dfc

25
p4-debug.p4 Executable file
View File

@@ -0,0 +1,25 @@
#!/usr/bin/python
#
# p4-debug.py
#
# Author: Simon Hausmann <hausmann@kde.org>
# License: MIT <http://www.opensource.org/licenses/mit-license.php>
#
# executes a p4 command with -G and prints the resulting python dicts
#
import os, string, sys
import marshal, popen2
cmd = ""
for arg in sys.argv[1:]:
cmd += arg + " "
pipe = os.popen("p4 -G %s" % cmd, "rb")
try:
while True:
entry = marshal.load(pipe)
print entry
except EOFError:
pass
pipe.close()