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
58526417
Kaydet (Commit)
58526417
authored
Mar 06, 2010
tarafından
Florent Xicluna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Do not print the header lines when running a single test.
üst
1adbee22
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
regrtest.py
Lib/test/regrtest.py
+9
-7
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/regrtest.py
Dosyayı görüntüle @
58526417
...
...
@@ -374,13 +374,6 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
resource_denieds
=
[]
environment_changed
=
[]
if
not
quiet
:
# Print basic platform information
print
"=="
,
platform
.
python_implementation
(),
\
" "
.
join
(
sys
.
version
.
split
())
print
"== "
,
platform
.
platform
(
aliased
=
True
)
print
"== "
,
os
.
getcwd
()
if
findleaks
:
try
:
import
gc
...
...
@@ -425,6 +418,15 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
stdtests
.
remove
(
arg
)
nottests
.
add
(
arg
)
args
=
[]
# For a partial run, we do not need to clutter the output.
if
verbose
or
not
(
quiet
or
tests
or
args
):
# Print basic platform information
print
"=="
,
platform
.
python_implementation
(),
\
" "
.
join
(
sys
.
version
.
split
())
print
"== "
,
platform
.
platform
(
aliased
=
True
)
print
"== "
,
os
.
getcwd
()
alltests
=
findtests
(
testdir
,
stdtests
,
nottests
)
tests
=
tests
or
args
or
alltests
if
single
:
...
...
Misc/NEWS
Dosyayı görüntüle @
58526417
...
...
@@ -126,6 +126,9 @@ Extension Modules
Tests
-----
- Print platform information when running the whole test suite, or using
the --verbose flag.
- Issue #767675: enable test_pep277 on POSIX platforms with Unicode-friendly
filesystem encoding.
...
...
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