MCPcopy Index your code
hub / github.com/git/git / p4_system

Function p4_system

git-p4.py:460–465  ·  view source on GitHub ↗

Specifically invoke p4 as the system command.

(cmd, *k, **kw)

Source from the content-addressed store, hash-verified

458
459
460def p4_system(cmd, *k, **kw):
461 """Specifically invoke p4 as the system command."""
462 real_cmd = p4_build_cmd(cmd)
463 retcode = subprocess.call(real_cmd, *k, **kw)
464 if retcode:
465 raise subprocess.CalledProcessError(retcode, real_cmd)
466
467
468def die_bad_access(s):

Callers 10

p4_integrateFunction · 0.85
p4_syncFunction · 0.85
p4_addFunction · 0.85
p4_deleteFunction · 0.85
p4_editFunction · 0.85
p4_revertFunction · 0.85
p4_reopenFunction · 0.85
p4_reopen_in_changeFunction · 0.85
p4_moveFunction · 0.85
exportGitTagsMethod · 0.85

Calls 1

p4_build_cmdFunction · 0.85

Tested by

no test coverage detected