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
b21af554
Kaydet (Commit)
b21af554
authored
Ock 10, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#16898: test_bufio now works with unittest test discovery. Patch by Zachary Ware.
üst
1d3e96db
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
test_bufio.py
Lib/test/test_bufio.py
+4
-7
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_bufio.py
Dosyayı görüntüle @
b21af554
...
...
@@ -11,7 +11,7 @@ import _pyio as pyio # Python implementation.
lengths
=
list
(
range
(
1
,
257
))
+
[
512
,
1000
,
1024
,
2048
,
4096
,
8192
,
10000
,
16384
,
32768
,
65536
,
1000000
]
class
BufferSizeTest
(
unittest
.
TestCase
)
:
class
BufferSizeTest
:
def
try_one
(
self
,
s
):
# Write s + "\n" + s to file, then open it and ensure that successive
# .readline()s deliver what we wrote.
...
...
@@ -62,15 +62,12 @@ class BufferSizeTest(unittest.TestCase):
self
.
drive_one
(
bytes
(
1000
))
class
CBufferSizeTest
(
BufferSizeTest
):
class
CBufferSizeTest
(
BufferSizeTest
,
unittest
.
TestCase
):
open
=
io
.
open
class
PyBufferSizeTest
(
BufferSizeTest
):
class
PyBufferSizeTest
(
BufferSizeTest
,
unittest
.
TestCase
):
open
=
staticmethod
(
pyio
.
open
)
def
test_main
():
support
.
run_unittest
(
CBufferSizeTest
,
PyBufferSizeTest
)
if
__name__
==
"__main__"
:
test_
main
()
unittest
.
main
()
Misc/NEWS
Dosyayı görüntüle @
b21af554
...
...
@@ -408,6 +408,9 @@ Library
Tests
-----
- Issue #16898: test_bufio now works with unittest test discovery.
Patch by Zachary Ware.
- Issue #16888: test_array now works with unittest test discovery.
Patch by Zachary Ware.
...
...
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