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
ac14aa51
Kaydet (Commit)
ac14aa51
authored
Tem 16, 2012
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix unchecked select.poll reference in setUp and tearDown for
platforms that don't have it.
üst
5bcd005a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
test_telnetlib.py
Lib/test/test_telnetlib.py
+7
-5
No files found.
Lib/test/test_telnetlib.py
Dosyayı görüntüle @
ac14aa51
...
...
@@ -168,14 +168,16 @@ def test_telnet(reads=(), cls=TelnetAlike, use_poll=None):
class
ExpectAndReadTestCase
(
TestCase
):
def
setUp
(
self
):
self
.
old_select
=
select
.
select
self
.
old_poll
=
select
.
poll
select
.
select
=
mock_select
select
.
poll
=
MockPoller
MockPoller
.
test_case
=
self
if
hasattr
(
select
,
'poll'
):
self
.
old_poll
=
select
.
poll
select
.
poll
=
MockPoller
MockPoller
.
test_case
=
self
def
tearDown
(
self
):
MockPoller
.
test_case
=
None
select
.
poll
=
self
.
old_poll
if
hasattr
(
select
,
'poll'
):
MockPoller
.
test_case
=
None
select
.
poll
=
self
.
old_poll
select
.
select
=
self
.
old_select
...
...
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