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
251cc846
Kaydet (Commit)
251cc846
authored
Ara 28, 2010
tarafından
Brian Quinlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Does not install a logging handler. Fixes issue 10626.
üst
dad532f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
12 deletions
+3
-12
_base.py
Lib/concurrent/futures/_base.py
+0
-2
test_concurrent_futures.py
Lib/test/test_concurrent_futures.py
+3
-10
No files found.
Lib/concurrent/futures/_base.py
Dosyayı görüntüle @
251cc846
...
...
@@ -41,8 +41,6 @@ _STATE_TO_DESCRIPTION_MAP = {
# Logger for internal use by the futures package.
LOGGER
=
logging
.
getLogger
(
"concurrent.futures"
)
STDERR_HANDLER
=
logging
.
StreamHandler
()
LOGGER
.
addHandler
(
STDERR_HANDLER
)
class
Error
(
Exception
):
"""Base class for all future-related exceptions."""
...
...
Lib/test/test_concurrent_futures.py
Dosyayı görüntüle @
251cc846
...
...
@@ -24,7 +24,7 @@ if sys.platform.startswith('win'):
from
concurrent
import
futures
from
concurrent.futures._base
import
(
PENDING
,
RUNNING
,
CANCELLED
,
CANCELLED_AND_NOTIFIED
,
FINISHED
,
Future
,
LOGGER
,
STDERR_HANDLER
,
wait
)
LOGGER
,
wait
)
import
concurrent.futures.process
def
create_future
(
state
=
PENDING
,
exception
=
None
,
result
=
None
):
...
...
@@ -632,11 +632,7 @@ class FutureTests(unittest.TestCase):
self
.
assertTrue
(
was_cancelled
)
def
test_done_callback_raises
(
self
):
LOGGER
.
removeHandler
(
STDERR_HANDLER
)
logging_stream
=
io
.
StringIO
()
handler
=
logging
.
StreamHandler
(
logging_stream
)
LOGGER
.
addHandler
(
handler
)
try
:
with
test
.
support
.
captured_stderr
()
as
stderr
:
raising_was_called
=
False
fn_was_called
=
False
...
...
@@ -655,10 +651,7 @@ class FutureTests(unittest.TestCase):
f
.
set_result
(
5
)
self
.
assertTrue
(
raising_was_called
)
self
.
assertTrue
(
fn_was_called
)
self
.
assertIn
(
'Exception: doh!'
,
logging_stream
.
getvalue
())
finally
:
LOGGER
.
removeHandler
(
handler
)
LOGGER
.
addHandler
(
STDERR_HANDLER
)
self
.
assertIn
(
'Exception: doh!'
,
stderr
.
getvalue
())
def
test_done_callback_already_successful
(
self
):
callback_result
=
None
...
...
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