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
4f2eb812
Kaydet (Commit)
4f2eb812
authored
Haz 22, 2014
tarafından
Giampaolo Rodola'
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#6916: attempt to fix BB failure
üst
47177861
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
test_asynchat.py
Lib/test/test_asynchat.py
+4
-2
No files found.
Lib/test/test_asynchat.py
Dosyayı görüntüle @
4f2eb812
...
...
@@ -263,7 +263,8 @@ class TestFifo(unittest.TestCase):
def
test_basic
(
self
):
with
warnings
.
catch_warnings
(
record
=
True
)
as
w
:
f
=
asynchat
.
fifo
()
assert
issubclass
(
w
[
0
]
.
category
,
DeprecationWarning
)
if
w
:
assert
issubclass
(
w
[
0
]
.
category
,
DeprecationWarning
)
f
.
push
(
7
)
f
.
push
(
b
'a'
)
self
.
assertEqual
(
len
(
f
),
2
)
...
...
@@ -280,7 +281,8 @@ class TestFifo(unittest.TestCase):
def
test_given_list
(
self
):
with
warnings
.
catch_warnings
(
record
=
True
)
as
w
:
f
=
asynchat
.
fifo
([
b
'x'
,
17
,
3
])
assert
issubclass
(
w
[
0
]
.
category
,
DeprecationWarning
)
if
w
:
assert
issubclass
(
w
[
0
]
.
category
,
DeprecationWarning
)
self
.
assertEqual
(
len
(
f
),
3
)
self
.
assertEqual
(
f
.
pop
(),
(
1
,
b
'x'
))
self
.
assertEqual
(
f
.
pop
(),
(
1
,
17
))
...
...
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