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
b76ad512
Kaydet (Commit)
b76ad512
authored
Mar 06, 2017
tarafından
Xiang Zhang
Kaydeden (comit)
GitHub
Mar 06, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-29714: Fix a regression that bytes format may fail when containing zero bytes inside. (GH-499)
üst
86aa2696
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
test_bytes.py
Lib/test/test_bytes.py
+10
-0
NEWS
Misc/NEWS
+3
-0
bytesobject.c
Objects/bytesobject.c
+2
-2
No files found.
Lib/test/test_bytes.py
Dosyayı görüntüle @
b76ad512
...
...
@@ -515,6 +515,11 @@ class BaseBytesTest:
a
=
b
%
(
b
'seventy-nine'
,
79
)
self
.
assertEqual
(
a
,
b
'seventy-nine / 100 = 79
%
'
)
self
.
assertIs
(
type
(
a
),
self
.
type2test
)
# issue 29714
b
=
self
.
type2test
(
b
'hello,
\x00
%
b!'
)
b
=
b
%
b
'world'
self
.
assertEqual
(
b
,
b
'hello,
\x00
world!'
)
self
.
assertIs
(
type
(
b
),
self
.
type2test
)
def
test_imod
(
self
):
b
=
self
.
type2test
(
b
'hello,
%
b!'
)
...
...
@@ -527,6 +532,11 @@ class BaseBytesTest:
b
%=
(
b
'seventy-nine'
,
79
)
self
.
assertEqual
(
b
,
b
'seventy-nine / 100 = 79
%
'
)
self
.
assertIs
(
type
(
b
),
self
.
type2test
)
# issue 29714
b
=
self
.
type2test
(
b
'hello,
\x00
%
b!'
)
b
%=
b
'world'
self
.
assertEqual
(
b
,
b
'hello,
\x00
world!'
)
self
.
assertIs
(
type
(
b
),
self
.
type2test
)
def
test_rmod
(
self
):
with
self
.
assertRaises
(
TypeError
):
...
...
Misc/NEWS
Dosyayı görüntüle @
b76ad512
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
- bpo-29714: Fix a regression that bytes format may fail when containing zero
bytes inside.
- bpo-29695: Using "x" as a keyword argument in int(), bool() and float() and
using "sequence" as a keyword argument in list() and tuple() are deprecated.
Specify the value as a positional argument instead.
...
...
Objects/bytesobject.c
Dosyayı görüntüle @
b76ad512
...
...
@@ -619,11 +619,11 @@ _PyBytes_FormatEx(const char *format, Py_ssize_t format_len,
Py_ssize_t
len
;
char
*
pos
;
pos
=
strchr
(
fmt
+
1
,
'%'
);
pos
=
(
char
*
)
memchr
(
fmt
+
1
,
'%'
,
fmtcnt
);
if
(
pos
!=
NULL
)
len
=
pos
-
fmt
;
else
len
=
f
ormat_len
-
(
fmt
-
format
)
;
len
=
f
mtcnt
+
1
;
assert
(
len
!=
0
);
memcpy
(
res
,
fmt
,
len
);
...
...
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