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
a37171dd
Kaydet (Commit)
a37171dd
authored
Haz 19, 2001
tarafından
Marc-André Lemburg
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Test by Martin v. Loewis for the new UTF-16 codec handling of BOM
marks.
üst
92b550cd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
test_codecs.py
Lib/test/test_codecs.py
+25
-0
No files found.
Lib/test/test_codecs.py
0 → 100644
Dosyayı görüntüle @
a37171dd
import
test_support
,
unittest
import
codecs
import
StringIO
class
UTF16Test
(
unittest
.
TestCase
):
spamle
=
'
\xff\xfe
s
\x00
p
\x00
a
\x00
m
\x00
s
\x00
p
\x00
a
\x00
m
\x00
'
spambe
=
'
\xfe\xff\x00
s
\x00
p
\x00
a
\x00
m
\x00
s
\x00
p
\x00
a
\x00
m'
def
test_only_one_bom
(
self
):
_
,
_
,
reader
,
writer
=
codecs
.
lookup
(
"utf-16"
)
# encode some stream
s
=
StringIO
.
StringIO
()
f
=
writer
(
s
)
f
.
write
(
u"spam"
)
f
.
write
(
u"spam"
)
d
=
s
.
getvalue
()
# check whether there is exactly one BOM in it
self
.
assert_
(
d
==
self
.
spamle
or
d
==
self
.
spambe
)
# try to read it back
s
=
StringIO
.
StringIO
(
d
)
f
=
reader
(
s
)
self
.
assertEquals
(
f
.
read
(),
u"spamspam"
)
test_support
.
run_unittest
(
UTF16Test
)
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