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
c92ea76f
Kaydet (Commit)
c92ea76f
authored
Ock 29, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20424: Python implementation of io.StringIO now supports lone surrogates.
üst
1e40295a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
_pyio.py
Lib/_pyio.py
+1
-1
test_memoryio.py
Lib/test/test_memoryio.py
+9
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/_pyio.py
Dosyayı görüntüle @
c92ea76f
...
...
@@ -2044,7 +2044,7 @@ class StringIO(TextIOWrapper):
def
__init__
(
self
,
initial_value
=
""
,
newline
=
"
\n
"
):
super
(
StringIO
,
self
)
.
__init__
(
BytesIO
(),
encoding
=
"utf-8"
,
errors
=
"s
trict
"
,
errors
=
"s
urrogatepass
"
,
newline
=
newline
)
# Issue #5645: make universal newlines semantics the same as in the
# C version, even under Windows.
...
...
Lib/test/test_memoryio.py
Dosyayı görüntüle @
c92ea76f
...
...
@@ -609,6 +609,15 @@ class PyStringIOTest(MemoryTestMixin, MemorySeekTestMixin,
UnsupportedOperation
=
pyio
.
UnsupportedOperation
EOF
=
""
def
test_lone_surrogates
(
self
):
# Issue #20424
memio
=
self
.
ioclass
(
'
\ud800
'
)
self
.
assertEqual
(
memio
.
read
(),
'
\ud800
'
)
memio
=
self
.
ioclass
()
memio
.
write
(
'
\ud800
'
)
self
.
assertEqual
(
memio
.
getvalue
(),
'
\ud800
'
)
class
PyStringIOPickleTest
(
TextIOTestMixin
,
unittest
.
TestCase
):
"""Test if pickle restores properly the internal state of StringIO.
...
...
Misc/NEWS
Dosyayı görüntüle @
c92ea76f
...
...
@@ -50,6 +50,8 @@ Core and Builtins
Library
-------
- Issue #20424: Python implementation of io.StringIO now supports lone surrogates.
- Issue #19456: ntpath.join() now joins relative paths correctly when a drive
is present.
...
...
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