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
57b93ad5
Kaydet (Commit)
57b93ad5
authored
May 08, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
repr(b"\0") should return b"\x00", not the (unusual) b"\0".
üst
e5e80b8c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
test_bytes.py
Lib/test/test_bytes.py
+3
-2
bytesobject.c
Objects/bytesobject.c
+1
-1
No files found.
Lib/test/test_bytes.py
Dosyayı görüntüle @
57b93ad5
...
...
@@ -73,8 +73,9 @@ class BytesTest(unittest.TestCase):
def
test_repr
(
self
):
self
.
assertEqual
(
repr
(
bytes
()),
"b''"
)
self
.
assertEqual
(
repr
(
bytes
([
0
])),
"b'
\\
0'"
)
self
.
assertEqual
(
repr
(
bytes
([
0
,
1
,
254
,
255
])),
"b'
\\
0
\\
x01
\\
xfe
\\
xff'"
)
self
.
assertEqual
(
repr
(
bytes
([
0
])),
"b'
\\
x00'"
)
self
.
assertEqual
(
repr
(
bytes
([
0
,
1
,
254
,
255
])),
"b'
\\
x00
\\
x01
\\
xfe
\\
xff'"
)
self
.
assertEqual
(
repr
(
bytes
(
'abc'
)),
"b'abc'"
)
self
.
assertEqual
(
repr
(
bytes
(
"'"
)),
"b'
\\
''"
)
...
...
Objects/bytesobject.c
Dosyayı görüntüle @
57b93ad5
...
...
@@ -849,7 +849,7 @@ bytes_repr(PyBytesObject *self)
else
if
(
c
==
'\r'
)
*
p
++
=
'\\'
,
*
p
++
=
'r'
;
else
if
(
c
==
0
)
*
p
++
=
'\\'
,
*
p
++
=
'0'
;
*
p
++
=
'\\'
,
*
p
++
=
'
x'
,
*
p
++
=
'0'
,
*
p
++
=
'
0'
;
else
if
(
c
<
' '
||
c
>=
0x7f
)
{
/* For performance, we don't want to call
PyOS_snprintf here (extra layers of
...
...
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