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
63f1738d
Kaydet (Commit)
63f1738d
authored
Tem 04, 2009
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #6413: fixed log level in distutils.dist.announce
üst
c197d0ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
dist.py
Lib/distutils/dist.py
+2
-2
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/distutils/dist.py
Dosyayı görüntüle @
63f1738d
...
@@ -914,8 +914,8 @@ Common commands: (see '--help-commands' for more)
...
@@ -914,8 +914,8 @@ Common commands: (see '--help-commands' for more)
# -- Methods that operate on the Distribution ----------------------
# -- Methods that operate on the Distribution ----------------------
def
announce
(
self
,
msg
,
level
=
1
):
def
announce
(
self
,
msg
,
level
=
log
.
INFO
):
log
.
debug
(
msg
)
log
.
log
(
level
,
msg
)
def
run_commands
(
self
):
def
run_commands
(
self
):
"""Run each command that was seen on the setup script command line.
"""Run each command that was seen on the setup script command line.
...
...
Misc/NEWS
Dosyayı görüntüle @
63f1738d
...
@@ -347,6 +347,8 @@ Core and Builtins
...
@@ -347,6 +347,8 @@ Core and Builtins
Library
Library
-------
-------
- Issue #6413: Fixed the log level in distutils.dist for announce.
- Issue #3392: The subprocess communicate() method no longer fails in select()
- Issue #3392: The subprocess communicate() method no longer fails in select()
when file descriptors are large; communicate() now uses poll() when possible.
when file descriptors are large; communicate() now uses poll() when possible.
...
...
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