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
1a5201f8
Kaydet (Commit)
1a5201f8
authored
Mar 14, 2011
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge #11488 patch from 3.1.
üst
13312638
d89ee79d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
test_tempfile.py
Lib/test/test_tempfile.py
+17
-0
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/test/test_tempfile.py
Dosyayı görüntüle @
1a5201f8
...
...
@@ -704,6 +704,23 @@ class test_SpooledTemporaryFile(TC):
f
.
write
(
b
'x'
)
self
.
assertTrue
(
f
.
_rolled
)
def
test_writelines
(
self
):
# Verify writelines with a SpooledTemporaryFile
f
=
self
.
do_create
()
f
.
writelines
((
b
'x'
,
b
'y'
,
b
'z'
))
f
.
seek
(
0
)
buf
=
f
.
read
()
self
.
assertEqual
(
buf
,
b
'xyz'
)
def
test_writelines_sequential
(
self
):
# A SpooledTemporaryFile should hold exactly max_size bytes, and roll
# over afterward
f
=
self
.
do_create
(
max_size
=
35
)
f
.
writelines
((
b
'x'
*
20
,
b
'x'
*
10
,
b
'x'
*
5
))
self
.
assertFalse
(
f
.
_rolled
)
f
.
write
(
b
'x'
)
self
.
assertTrue
(
f
.
_rolled
)
def
test_sparse
(
self
):
# A SpooledTemporaryFile that is written late in the file will extend
# when that occurs
...
...
Misc/ACKS
Dosyayı görüntüle @
1a5201f8
...
...
@@ -196,6 +196,7 @@ Brian Curtin
Lisandro Dalcin
Andrew Dalke
Lars Damerow
Evan Dandrea
Eric Daniel
Scott David Daniels
Ben Darnell
...
...
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