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
49d0f4e4
Kaydet (Commit)
49d0f4e4
authored
Ock 31, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20452: Remove debug code, no more needed
üst
323748e1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
22 deletions
+2
-22
base_events.py
Lib/asyncio/base_events.py
+1
-9
test_events.py
Lib/test/test_asyncio/test_events.py
+1
-13
No files found.
Lib/asyncio/base_events.py
Dosyayı görüntüle @
49d0f4e4
...
...
@@ -620,18 +620,10 @@ class BaseEventLoop(events.AbstractEventLoop):
timeout
=
min
(
timeout
,
deadline
)
# TODO: Instrumentation only in debug mode?
# FIXME: don't force log (issue #20452)
if
True
:
#logger.isEnabledFor(logging.INFO):
if
logger
.
isEnabledFor
(
logging
.
INFO
):
t0
=
self
.
time
()
event_list
=
self
.
_selector
.
select
(
timeout
)
t1
=
self
.
time
()
# FIXME: remove these debug info (issue #20452)
dt
=
t1
-
t0
if
timeout
is
not
None
and
dt
<
timeout
and
not
event_list
:
print
(
"WARNING: selector.select(timeout=
%.20
f) took dt=
%.20
f sec (dt-timeout=
%+.20
f)"
%
(
timeout
,
dt
,
dt
-
timeout
),
file
=
sys
.
__stdout__
)
print
(
"WARNING: dt+
%.20
f > timeout?
%
s"
%
(
self
.
_granularity
,
(
dt
+
self
.
_granularity
)
>
timeout
),
file
=
sys
.
__stdout__
)
if
t1
-
t0
>=
1
:
level
=
logging
.
INFO
else
:
...
...
Lib/test/test_asyncio/test_events.py
Dosyayı görüntüle @
49d0f4e4
...
...
@@ -28,15 +28,6 @@ from asyncio import events
from
asyncio
import
selector_events
from
asyncio
import
test_utils
# FIXME: remove these info, used for debug purpose (issue #20452)
print
(
"time.monotonic() info:
%
r"
%
(
time
.
get_clock_info
(
'monotonic'
),))
try
:
SC_CLK_TCK
=
os
.
sysconf
(
'SC_CLK_TCK'
)
print
(
"os.sysconf('SC_CLK_TCK') =
%
s"
%
SC_CLK_TCK
)
except
Exception
:
pass
# FIXME: remove these info, used for debug purpose (issue #20452)
def
data_file
(
filename
):
if
hasattr
(
support
,
'TEST_HOME_DIR'
):
...
...
@@ -1186,10 +1177,7 @@ class EventLoopTestsMixin:
self
.
loop
.
run_until_complete
(
wait
())
calls
.
append
(
self
.
loop
.
_run_once_counter
)
self
.
assertEqual
(
calls
,
[
1
,
3
,
5
,
6
],
# FIXME: remove these info, used for debug purpose (issue #20452)
(
self
.
loop
.
_granularity
,
self
.
loop
.
_selector
.
resolution
))
self
.
assertEqual
(
calls
,
[
1
,
3
,
5
,
6
])
class
SubprocessTestsMixin
:
...
...
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