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
d38e6e51
Kaydet (Commit)
d38e6e51
authored
Eyl 28, 2012
tarafından
Michael Foord
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closes issue 16064. No longer hard code executable name in unittest help output.
üst
0e1af282
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
__main__.py
Lib/unittest/__main__.py
+8
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/unittest/__main__.py
Dosyayı görüntüle @
d38e6e51
...
...
@@ -2,7 +2,14 @@
import
sys
if
sys
.
argv
[
0
]
.
endswith
(
"__main__.py"
):
sys
.
argv
[
0
]
=
"python -m unittest"
import
os.path
# We change sys.argv[0] to make help message more useful
# use executable without path, unquoted
# (it's just a hint anyway)
# (if you have spaces in your executable you get what you deserve!)
executable
=
os
.
path
.
basename
(
sys
.
executable
)
sys
.
argv
[
0
]
=
executable
+
" -m unittest"
del
os
__unittest
=
True
...
...
Misc/NEWS
Dosyayı görüntüle @
d38e6e51
...
...
@@ -36,6 +36,8 @@ Core and Builtins
Library
-------
- Issue #16064: unittest -m claims executable is "python", not "python3"
- Issue #15222: Insert blank line after each message in mbox mailboxes
- Issue #16013: Fix CSV Reader parsing issue with ending quote characters.
...
...
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