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
40648838
Kaydet (Commit)
40648838
authored
Agu 05, 2015
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #24751: Merge with 3.4
üst
08b1817f
920a335e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
regrtest.py
Lib/test/regrtest.py
+8
-1
NEWS
Misc/NEWS
+7
-0
No files found.
Lib/test/regrtest.py
Dosyayı görüntüle @
40648838
...
...
@@ -810,7 +810,7 @@ def main(tests=None, **kwargs):
if
ns
.
verbose2
and
bad
:
print
(
"Re-running failed tests in verbose mode"
)
for
test
in
bad
:
for
test
in
bad
[:]
:
print
(
"Re-running test
%
r in verbose mode"
%
test
)
sys
.
stdout
.
flush
()
try
:
...
...
@@ -821,6 +821,13 @@ def main(tests=None, **kwargs):
# print a newline separate from the ^C
print
()
break
else
:
if
ok
[
0
]
in
{
PASSED
,
ENV_CHANGED
,
SKIPPED
,
RESOURCE_DENIED
}:
bad
.
remove
(
test
)
else
:
if
bad
:
print
(
count
(
len
(
bad
),
'test'
),
"failed again:"
)
printlist
(
bad
)
if
ns
.
single
:
if
next_single_test
:
...
...
Misc/NEWS
Dosyayı görüntüle @
40648838
...
...
@@ -45,6 +45,13 @@ Documentation
- Issue #24729: Correct IO tutorial to match implementation regarding
encoding parameter to open function.
Tests
-----
- Issue #24751: When running regrtest with the ``-w`` command line option,
a test run is no longer marked as a failure if all tests succeed when
re-run.
What'
s
New
in
Python
3.5.0
beta
4
?
==================================
...
...
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