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
7db27c8e
Kaydet (Commit)
7db27c8e
authored
Haz 16, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #21205: Fix unit tests
üst
40ee3018
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+1
-4
test_sys.py
Lib/test/test_sys.py
+1
-1
No files found.
Lib/test/test_asyncio/test_tasks.py
Dosyayı görüntüle @
7db27c8e
...
...
@@ -154,10 +154,7 @@ class TaskTests(unittest.TestCase):
t
=
MyTask
(
gen
,
loop
=
self
.
loop
)
filename
=
gen
.
gi_code
.
co_filename
lineno
=
gen
.
gi_frame
.
f_lineno
# FIXME: check for the name "coro" instead of "notmuch" because
# @asyncio.coroutine drops the name of the wrapped function:
# http://bugs.python.org/issue21205
self
.
assertEqual
(
repr
(
t
),
'T[](<coro at
%
s:
%
s>)'
%
(
filename
,
lineno
))
self
.
assertEqual
(
repr
(
t
),
'T[](<notmuch at
%
s:
%
s>)'
%
(
filename
,
lineno
))
def
test_task_basics
(
self
):
@asyncio.coroutine
...
...
Lib/test/test_sys.py
Dosyayı görüntüle @
7db27c8e
...
...
@@ -885,7 +885,7 @@ class SizeofTest(unittest.TestCase):
check
(
bar
,
size
(
'PP'
))
# generator
def
get_gen
():
yield
1
check
(
get_gen
(),
size
(
'Pb2P'
))
check
(
get_gen
(),
size
(
'Pb2P
PP
'
))
# iterator
check
(
iter
(
'abc'
),
size
(
'lP'
))
# callable-iterator
...
...
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