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
c9ad8b7a
Kaydet (Commit)
c9ad8b7a
authored
Ara 28, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #29073: bytearray formatting no longer truncates on first null byte.
üst
af9181a4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
test_format.py
Lib/test/test_format.py
+7
-0
NEWS
Misc/NEWS
+2
-0
bytearrayobject.c
Objects/bytearrayobject.c
+3
-1
No files found.
Lib/test/test_format.py
Dosyayı görüntüle @
c9ad8b7a
...
...
@@ -388,6 +388,13 @@ class FormatTest(unittest.TestCase):
else
:
raise
TestFailed
(
'"
%*
d"
%
(maxsize, -127) should fail'
)
def
test_nul
(
self
):
# test the null character
testcommon
(
"a
\0
b"
,
(),
'a
\0
b'
)
testcommon
(
"a
%
cb"
,
(
0
,),
'a
\0
b'
)
testformat
(
"a
%
sb"
,
(
'c
\0
d'
,),
'ac
\0
db'
)
testcommon
(
b
"a
%
sb"
,
(
b
'c
\0
d'
,),
b
'ac
\0
db'
)
def
test_non_ascii
(
self
):
testformat
(
"
\u20ac
=
%
f"
,
(
1.0
,),
"
\u20ac
=1.000000"
)
...
...
Misc/NEWS
Dosyayı görüntüle @
c9ad8b7a
...
...
@@ -10,6 +10,8 @@ Release date: TBA
Core and Builtins
-----------------
- Issue #29073: bytearray formatting no longer truncates on first null byte.
- Issue #28932: Do not include <sys/random.h> if it does not exist.
- Issue #28147: Fix a memory leak in split-table dictionaries: setattr()
...
...
Objects/bytearrayobject.c
Dosyayı görüntüle @
c9ad8b7a
...
...
@@ -283,13 +283,15 @@ bytearray_format(PyByteArrayObject *self, PyObject *args)
{
PyObject
*
bytes_in
,
*
bytes_out
,
*
res
;
char
*
bytestring
;
Py_ssize_t
bytesize
;
if
(
self
==
NULL
||
!
PyByteArray_Check
(
self
)
||
args
==
NULL
)
{
PyErr_BadInternalCall
();
return
NULL
;
}
bytestring
=
PyByteArray_AS_STRING
(
self
);
bytes_in
=
PyBytes_FromString
(
bytestring
);
bytesize
=
PyByteArray_GET_SIZE
(
self
);
bytes_in
=
PyBytes_FromStringAndSize
(
bytestring
,
bytesize
);
if
(
bytes_in
==
NULL
)
return
NULL
;
bytes_out
=
_PyBytes_Format
(
bytes_in
,
args
);
...
...
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