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
b487e632
Kaydet (Commit)
b487e632
authored
Mar 21, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
stringio doesn't have an encoding
üst
16f966ee
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
_pyio.py
Lib/_pyio.py
+4
-0
test_memoryio.py
Lib/test/test_memoryio.py
+1
-1
_stringio.c
Modules/_stringio.c
+1
-1
No files found.
Lib/_pyio.py
Dosyayı görüntüle @
b487e632
...
...
@@ -1834,3 +1834,7 @@ class StringIO(TextIOWrapper):
# TextIOWrapper tells the encoding in its repr. In StringIO,
# that's a implementation detail.
return
object
.
__repr__
(
self
)
@property
def
encoding
(
self
):
return
None
Lib/test/test_memoryio.py
Dosyayı görüntüle @
b487e632
...
...
@@ -451,7 +451,7 @@ class PyStringIOTest(MemoryTestMixin, MemorySeekTestMixin, unittest.TestCase):
# These are just dummy values but we nevertheless check them for fear
# of unexpected breakage.
self
.
assert
Equal
(
memio
.
encoding
,
"utf-8"
)
self
.
assert
True
(
memio
.
encoding
is
None
)
self
.
assertEqual
(
memio
.
errors
,
"strict"
)
self
.
assertEqual
(
memio
.
line_buffering
,
False
)
...
...
Modules/_stringio.c
Dosyayı görüntüle @
b487e632
...
...
@@ -665,7 +665,7 @@ stringio_encoding(StringIOObject *self, void *context)
{
CHECK_INITIALIZED
(
self
);
CHECK_CLOSED
(
self
);
return
PyUnicode_FromString
(
"utf-8"
)
;
Py_RETURN_NONE
;
}
static
PyObject
*
...
...
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