Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
f00011af
Kaydet (Commit)
f00011af
authored
Şub 22, 2012
tarafından
Nadeem Vawda
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #14053: Fix "make patchcheck" to work with MQ.
Patch by Francisco Martín Brugué
üst
93291534
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
0 deletions
+20
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
patchcheck.py
Tools/scripts/patchcheck.py
+16
-0
No files found.
Misc/ACKS
Dosyayı görüntüle @
f00011af
...
@@ -108,6 +108,7 @@ Jean Brouwers
...
@@ -108,6 +108,7 @@ Jean Brouwers
Gary S. Brown
Gary S. Brown
Oleg Broytmann
Oleg Broytmann
Dave Brueck
Dave Brueck
Francisco Martín Brugué
Stan Bubrouski
Stan Bubrouski
Erik de Bueger
Erik de Bueger
Dick Bulterman
Dick Bulterman
...
...
Misc/NEWS
Dosyayı görüntüle @
f00011af
...
@@ -531,6 +531,9 @@ Build
...
@@ -531,6 +531,9 @@ Build
Tools/Demos
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
- 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
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
suffix. See its new -o, -W and --add-suffix options. This makes it more
...
...
Tools/scripts/patchcheck.py
Dosyayı görüntüle @
f00011af
...
@@ -36,6 +36,20 @@ def status(message, modal=False, info=None):
...
@@ -36,6 +36,20 @@ def status(message, modal=False, info=None):
return
decorated_fxn
return
decorated_fxn
def
mq_patches_applied
():
"""Check if there are any applied MQ patches."""
cmd
=
'hg qapplied'
st
=
subprocess
.
Popen
(
cmd
.
split
(),
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
try
:
bstdout
,
_
=
st
.
communicate
()
return
st
.
returncode
==
0
and
bstdout
finally
:
st
.
stdout
.
close
()
st
.
stderr
.
close
()
@status
(
"Getting the list of files that have been added/changed"
,
@status
(
"Getting the list of files that have been added/changed"
,
info
=
lambda
x
:
n_files_str
(
len
(
x
)))
info
=
lambda
x
:
n_files_str
(
len
(
x
)))
def
changed_files
():
def
changed_files
():
...
@@ -43,6 +57,8 @@ def changed_files():
...
@@ -43,6 +57,8 @@ def changed_files():
if
os
.
path
.
isdir
(
os
.
path
.
join
(
SRCDIR
,
'.hg'
)):
if
os
.
path
.
isdir
(
os
.
path
.
join
(
SRCDIR
,
'.hg'
)):
vcs
=
'hg'
vcs
=
'hg'
cmd
=
'hg status --added --modified --no-status'
cmd
=
'hg status --added --modified --no-status'
if
mq_patches_applied
():
cmd
+=
' --rev qparent'
elif
os
.
path
.
isdir
(
'.svn'
):
elif
os
.
path
.
isdir
(
'.svn'
):
vcs
=
'svn'
vcs
=
'svn'
cmd
=
'svn status --quiet --non-interactive --ignore-externals'
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