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
4780c9a0
Kaydet (Commit)
4780c9a0
authored
Eyl 26, 2009
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Tidied up name of parameter in StreamHandler
üst
9aac2455
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
logging.rst
Doc/library/logging.rst
+2
-2
__init__.py
Lib/logging/__init__.py
+5
-5
No files found.
Doc/library/logging.rst
Dosyayı görüntüle @
4780c9a0
...
...
@@ -1681,9 +1681,9 @@ file-like object (or, more precisely, any object which supports :meth:`write`
and :meth:`flush` methods).
.. class:: StreamHandler([strm])
.. class:: StreamHandler([str
ea
m])
Returns a new instance of the :class:`StreamHandler` class. If *strm* is
Returns a new instance of the :class:`StreamHandler` class. If *str
ea
m* is
specified, the instance will use it for logging output; otherwise, *sys.stderr*
will be used.
...
...
Lib/logging/__init__.py
Dosyayı görüntüle @
4780c9a0
...
...
@@ -745,16 +745,16 @@ class StreamHandler(Handler):
sys.stdout or sys.stderr may be used.
"""
def
__init__
(
self
,
strm
=
None
):
def
__init__
(
self
,
str
ea
m
=
None
):
"""
Initialize the handler.
If strm is not specified, sys.stderr is used.
If str
ea
m is not specified, sys.stderr is used.
"""
Handler
.
__init__
(
self
)
if
strm
is
None
:
strm
=
sys
.
stderr
self
.
stream
=
strm
if
str
ea
m
is
None
:
str
ea
m
=
sys
.
stderr
self
.
stream
=
str
ea
m
def
flush
(
self
):
"""
...
...
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