mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Merge: #14053: Fix "make patchcheck" to work with MQ.
Patch by Francisco Martín Brugué
This commit is contained in:
commit
6721149501
2 changed files with 15 additions and 0 deletions
|
@ -36,6 +36,16 @@ def status(message, modal=False, info=None):
|
|||
return decorated_fxn
|
||||
|
||||
|
||||
def mq_patches_applied():
|
||||
"""Check if there are any applied MQ patches."""
|
||||
cmd = 'hg qapplied'
|
||||
with subprocess.Popen(cmd.split(),
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE) as st:
|
||||
bstdout, _ = st.communicate()
|
||||
return st.returncode == 0 and bstdout
|
||||
|
||||
|
||||
@status("Getting the list of files that have been added/changed",
|
||||
info=lambda x: n_files_str(len(x)))
|
||||
def changed_files():
|
||||
|
@ -44,6 +54,8 @@ def changed_files():
|
|||
sys.exit('need a checkout to get modified files')
|
||||
|
||||
cmd = 'hg status --added --modified --no-status'
|
||||
if mq_patches_applied():
|
||||
cmd += ' --rev qparent'
|
||||
with subprocess.Popen(cmd.split(), stdout=subprocess.PIPE) as st:
|
||||
return [x.decode().rstrip() for x in st.stdout]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue