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
46d41061
Kaydet (Commit)
46d41061
authored
Ara 13, 2008
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4228: Pack negative values the same way as 2.4
in struct's L format.
üst
ec96c020
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
6 deletions
+21
-6
test_struct.py
Lib/test/test_struct.py
+13
-0
NEWS
Misc/NEWS
+2
-0
_struct.c
Modules/_struct.c
+6
-6
No files found.
Lib/test/test_struct.py
Dosyayı görüntüle @
46d41061
...
...
@@ -3,6 +3,8 @@ import test.test_support
import
struct
import
array
import
warnings
warnings
.
filterwarnings
(
"ignore"
,
"struct integer overflow masking is deprecated"
,
DeprecationWarning
)
import
sys
ISBIGENDIAN
=
sys
.
byteorder
==
"big"
...
...
@@ -535,6 +537,17 @@ def test_1530559():
test_1530559
()
## Issue 4228. Packing a negative unsigned long warns,
# but then still should give a value with the
# topmost bit set.
def
test_issue4228
():
# Packing a long may yield either 32 or 64 bits
x
=
struct
.
pack
(
'L'
,
-
1
)[:
4
]
vereq
(
x
,
'
\xff
'
*
4
)
test_issue4228
()
###########################################################################
# Packing and unpacking to/from buffers.
...
...
Misc/NEWS
Dosyayı görüntüle @
46d41061
...
...
@@ -217,6 +217,8 @@ Library
Extension
Modules
-----------------
-
Issue
#
4228
:
Pack
negative
values
the
same
way
as
2.4
in
struct
's L format.
- Security Issue #2: imageop did not validate arguments correctly and could
segfault as a result.
...
...
Modules/_struct.c
Dosyayı görüntüle @
46d41061
...
...
@@ -645,7 +645,7 @@ np_int(char *p, PyObject *v, const formatdef *f)
return
-
1
;
#if (SIZEOF_LONG > SIZEOF_INT)
if
((
x
<
((
long
)
INT_MIN
))
||
(
x
>
((
long
)
INT_MAX
)))
return
_range_error
(
f
,
0
);
RANGE_ERROR
(
x
,
f
,
0
,
-
1
);
#endif
y
=
(
int
)
x
;
memcpy
(
p
,
(
char
*
)
&
y
,
sizeof
y
);
...
...
@@ -657,12 +657,12 @@ np_uint(char *p, PyObject *v, const formatdef *f)
{
unsigned
long
x
;
unsigned
int
y
;
if
(
get_ulong
(
v
,
&
x
)
<
0
)
return
_range_error
(
f
,
1
)
;
if
(
get_
wrapped_
ulong
(
v
,
&
x
)
<
0
)
return
-
1
;
y
=
(
unsigned
int
)
x
;
#if (SIZEOF_LONG > SIZEOF_INT)
if
(
x
>
((
unsigned
long
)
UINT_MAX
))
return
_range_error
(
f
,
1
);
RANGE_ERROR
(
y
,
f
,
1
,
-
1
);
#endif
memcpy
(
p
,
(
char
*
)
&
y
,
sizeof
y
);
return
0
;
...
...
@@ -682,8 +682,8 @@ static int
np_ulong
(
char
*
p
,
PyObject
*
v
,
const
formatdef
*
f
)
{
unsigned
long
x
;
if
(
get_ulong
(
v
,
&
x
)
<
0
)
return
_range_error
(
f
,
1
)
;
if
(
get_
wrapped_
ulong
(
v
,
&
x
)
<
0
)
return
-
1
;
memcpy
(
p
,
(
char
*
)
&
x
,
sizeof
x
);
return
0
;
}
...
...
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