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
c4c0eaeb
Kaydet (Commit)
c4c0eaeb
authored
Mar 09, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
give TextIOWrapper a repr that tells you the encoding
üst
f2b55fb5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
_pyio.py
Lib/_pyio.py
+3
-0
test_io.py
Lib/test/test_io.py
+6
-0
_textio.c
Modules/_textio.c
+10
-2
No files found.
Lib/_pyio.py
Dosyayı görüntüle @
c4c0eaeb
...
...
@@ -1399,6 +1399,9 @@ class TextIOWrapper(TextIOBase):
# - "bytes_..." for integer variables that count input bytes
# - "chars_..." for integer variables that count decoded characters
def
__repr__
(
self
):
return
"<TextIOWrapper encoding={0}>"
.
format
(
self
.
encoding
)
@property
def
encoding
(
self
):
return
self
.
_encoding
...
...
Lib/test/test_io.py
Dosyayı görüntüle @
c4c0eaeb
...
...
@@ -1354,6 +1354,12 @@ class TextIOWrapperTest(unittest.TestCase):
self
.
assertRaises
(
TypeError
,
t
.
__init__
,
b
,
newline
=
42
)
self
.
assertRaises
(
ValueError
,
t
.
__init__
,
b
,
newline
=
'xyzzy'
)
def
test_repr
(
self
):
raw
=
self
.
BytesIO
(
"hello"
.
encode
(
"utf-8"
))
b
=
self
.
BufferedReader
(
raw
)
t
=
self
.
TextIOWrapper
(
b
,
encoding
=
"utf-8"
)
self
.
assertEqual
(
repr
(
t
),
"<TextIOWrapper encoding=utf-8>"
)
def
test_line_buffering
(
self
):
r
=
self
.
BytesIO
()
b
=
self
.
BufferedWriter
(
r
,
1000
)
...
...
Modules/_textio.c
Dosyayı görüntüle @
c4c0eaeb
...
...
@@ -2171,6 +2171,14 @@ TextIOWrapper_truncate(PyTextIOWrapperObject *self, PyObject *args)
return
PyObject_CallMethodObjArgs
(
self
->
buffer
,
_PyIO_str_truncate
,
NULL
);
}
static
PyObject
*
TextIOWrapper_repr
(
PyTextIOWrapperObject
*
self
)
{
CHECK_INITIALIZED
(
self
);
return
PyUnicode_FromFormat
(
"<TextIOWrapper encoding=%S>"
,
self
->
encoding
);
}
/* Inquiries */
static
PyObject
*
...
...
@@ -2372,9 +2380,9 @@ PyTypeObject PyTextIOWrapper_Type = {
(
destructor
)
TextIOWrapper_dealloc
,
/*tp_dealloc*/
0
,
/*tp_print*/
0
,
/*tp_getattr*/
0
,
/*tp
_s
etattr*/
0
,
/*tp
s_
etattr*/
0
,
/*tp_compare */
0
,
/*tp_repr*/
(
reprfunc
)
TextIOWrapper_repr
,
/*tp_repr*/
0
,
/*tp_as_number*/
0
,
/*tp_as_sequence*/
0
,
/*tp_as_mapping*/
...
...
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