Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4bbcb64d
Commit
4bbcb64d
authored
Apr 02, 2007
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SF #1693079 Array module cannot pickle empty arrays
parent
93e93844
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
6 deletions
+30
-6
Lib/test/test_array.py
Lib/test/test_array.py
+15
-0
Misc/NEWS
Misc/NEWS
+2
-0
Modules/arraymodule.c
Modules/arraymodule.c
+13
-6
No files found.
Lib/test/test_array.py
View file @
4bbcb64d
...
...
@@ -111,6 +111,21 @@ class BaseTest(unittest.TestCase):
self
.
assertEqual
(
a
.
x
,
b
.
x
)
self
.
assertEqual
(
type
(
a
),
type
(
b
))
def
test_pickle_for_empty_array
(
self
):
for
protocol
in
(
0
,
1
,
2
):
a
=
array
.
array
(
self
.
typecode
)
b
=
loads
(
dumps
(
a
,
protocol
))
self
.
assertNotEqual
(
id
(
a
),
id
(
b
))
self
.
assertEqual
(
a
,
b
)
a
=
ArraySubclass
(
self
.
typecode
)
a
.
x
=
10
b
=
loads
(
dumps
(
a
,
protocol
))
self
.
assertNotEqual
(
id
(
a
),
id
(
b
))
self
.
assertEqual
(
a
,
b
)
self
.
assertEqual
(
a
.
x
,
b
.
x
)
self
.
assertEqual
(
type
(
a
),
type
(
b
))
def
test_insert
(
self
):
a
=
array
.
array
(
self
.
typecode
,
self
.
example
)
a
.
insert
(
0
,
self
.
example
[
0
])
...
...
Misc/NEWS
View file @
4bbcb64d
...
...
@@ -134,6 +134,8 @@ Core and builtins
Extension
Modules
-----------------
-
Bug
#
1693079
:
The
array
module
can
now
successfully
pickle
empty
arrays
.
-
Bug
#
1688393
:
Prevent
crash
in
socket
.
recvfrom
if
length
is
negative
.
-
Bug
#
1622896
:
fix
a
rare
corner
case
where
the
bz2
module
raised
an
...
...
Modules/arraymodule.c
View file @
4bbcb64d
...
...
@@ -1147,12 +1147,19 @@ array_reduce(arrayobject *array)
dict
=
Py_None
;
Py_INCREF
(
dict
);
}
if
(
array
->
ob_size
>
0
)
{
result
=
Py_BuildValue
(
"O(cs#)O"
,
array
->
ob_type
,
array
->
ob_descr
->
typecode
,
array
->
ob_item
,
array
->
ob_size
*
array
->
ob_descr
->
itemsize
,
dict
);
}
else
{
result
=
Py_BuildValue
(
"O(c)O"
,
array
->
ob_type
,
array
->
ob_descr
->
typecode
,
dict
);
}
Py_DECREF
(
dict
);
return
result
;
}
...
...
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