mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
Added a little helper script to debug the output of the p4 python interface.
Signed-off-by: Simon Hausmann <simon@lst.de>
This commit is contained in:
parent
c9c527d7b6
commit
20c7bc76b9
1 changed files with 25 additions and 0 deletions
25
contrib/fast-import/p4-debug.p4
Executable file
25
contrib/fast-import/p4-debug.p4
Executable 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()
|
||||
|
Loading…
Reference in a new issue