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
5e75829e
Kaydet (Commit)
5e75829e
authored
Kas 15, 2013
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Closes #19523: Merged fix from 3.3.
üst
5e2d4567
a76157dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
__init__.py
Lib/logging/__init__.py
+3
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/logging/__init__.py
Dosyayı görüntüle @
5e75829e
...
...
@@ -990,8 +990,10 @@ class FileHandler(StreamHandler):
self
.
flush
()
if
hasattr
(
self
.
stream
,
"close"
):
self
.
stream
.
close
()
StreamHandler
.
close
(
self
)
self
.
stream
=
None
# Issue #19523: call unconditionally to
# prevent a handler leak when delay is set
StreamHandler
.
close
(
self
)
finally
:
self
.
release
()
...
...
Misc/NEWS
Dosyayı görüntüle @
5e75829e
...
...
@@ -47,6 +47,8 @@ Core and Builtins
Library
-------
-
Issue
#
19523
:
Closed
FileHandler
leak
which
occurred
when
delay
was
set
.
-
Issue
#
19544
and
#
6516
:
Restore
support
for
--
user
and
--
group
parameters
to
sdist
command
accidentally
rolled
back
as
part
of
the
distutils2
rollback
.
...
...
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