Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9f64f731
Commit
9f64f731
authored
Feb 22, 2012
by
Nadeem Vawda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #14053: Fix "make patchcheck" to work with MQ.
Patch by Francisco Martín Brugué
parent
7ef825fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
Misc/NEWS
Misc/NEWS
+3
-0
Tools/scripts/patchcheck.py
Tools/scripts/patchcheck.py
+12
-0
No files found.
Misc/NEWS
View file @
9f64f731
...
...
@@ -483,6 +483,9 @@ Build
Tools/Demos
-----------
- Issue #14053: patchcheck.py ("make patchcheck") now works with MQ patches.
Patch by Francisco Martín Brugué.
- Issue #13930: 2to3 is now able to write its converted output files to another
directory tree as well as copying unchanged files and altering the file
suffix. See its new -o, -W and --add-suffix options. This makes it more
...
...
Tools/scripts/patchcheck.py
View file @
9f64f731
...
...
@@ -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
():
...
...
@@ -43,6 +53,8 @@ def changed_files():
if
os
.
path
.
isdir
(
os
.
path
.
join
(
SRCDIR
,
'.hg'
)):
vcs
=
'hg'
cmd
=
'hg status --added --modified --no-status'
if
mq_patches_applied
():
cmd
+=
' --rev qparent'
elif
os
.
path
.
isdir
(
'.svn'
):
vcs
=
'svn'
cmd
=
'svn status --quiet --non-interactive --ignore-externals'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment