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
d3cb2f6e
Kaydet (Commit)
d3cb2f6e
authored
Mar 26, 2011
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects.
üst
254d4b85
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
sharedctypes.py
Lib/multiprocessing/sharedctypes.py
+3
-1
test_multiprocessing.py
Lib/test/test_multiprocessing.py
+15
-0
NEWS
Misc/NEWS
+4
-0
No files found.
Lib/multiprocessing/sharedctypes.py
Dosyayı görüntüle @
d3cb2f6e
...
...
@@ -80,7 +80,9 @@ def RawArray(typecode_or_type, size_or_initializer):
type_
=
typecode_to_type
.
get
(
typecode_or_type
,
typecode_or_type
)
if
isinstance
(
size_or_initializer
,
(
int
,
long
)):
type_
=
type_
*
size_or_initializer
return
_new_value
(
type_
)
obj
=
_new_value
(
type_
)
ctypes
.
memset
(
ctypes
.
addressof
(
obj
),
0
,
ctypes
.
sizeof
(
obj
))
return
obj
else
:
type_
=
type_
*
len
(
size_or_initializer
)
result
=
_new_value
(
type_
)
...
...
Lib/test/test_multiprocessing.py
Dosyayı görüntüle @
d3cb2f6e
...
...
@@ -913,6 +913,21 @@ class _TestArray(BaseTestCase):
self
.
assertEqual
(
list
(
arr
[:]),
seq
)
@unittest.skipIf
(
c_int
is
None
,
"requires _ctypes"
)
def
test_array_from_size
(
self
):
size
=
10
# Test for zeroing (see issue #11675).
# The repetition below strengthens the test by increasing the chances
# of previously allocated non-zero memory being used for the new array
# on the 2nd and 3rd loops.
for
_
in
range
(
3
):
arr
=
self
.
Array
(
'i'
,
size
)
self
.
assertEqual
(
len
(
arr
),
size
)
self
.
assertEqual
(
list
(
arr
),
[
0
]
*
size
)
arr
[:]
=
range
(
10
)
self
.
assertEqual
(
list
(
arr
),
range
(
10
))
del
arr
@unittest.skipIf
(
c_int
is
None
,
"requires _ctypes"
)
def
test_rawarray
(
self
):
self
.
test_array
(
raw
=
True
)
...
...
Misc/NEWS
Dosyayı görüntüle @
d3cb2f6e
...
...
@@ -9,6 +9,10 @@ What's New in Python 2.7.2?
Core and Builtins
-----------------
- Issue #11675: multiprocessing.[Raw]Array objects created from an integer size
are now zeroed on creation. This matches the behaviour specified by the
documentation.
- Issue #11450: Don'
t
truncate
hg
version
info
in
Py_GetBuildInfo
()
when
there
are
many
tags
(
e
.
g
.
when
using
mq
).
Patch
by
Nadeem
Vawda
.
...
...
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