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
5185597a
Commit
5185597a
authored
Dec 20, 2015
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed sizeof tests for dict and type (they were passed by accident).
Added tests for dict views iterators.
parent
aaf69aca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
11 deletions
+22
-11
Lib/test/test_sys.py
Lib/test/test_sys.py
+22
-11
No files found.
Lib/test/test_sys.py
View file @
5185597a
...
...
@@ -864,6 +864,7 @@ class SizeofTest(unittest.TestCase):
def
test_objecttypes
(
self
):
# check all types defined in Objects/
calcsize
=
struct
.
calcsize
size
=
test
.
support
.
calcobjsize
vsize
=
test
.
support
.
calcvobjsize
check
=
self
.
check_sizeof
...
...
@@ -915,17 +916,23 @@ class SizeofTest(unittest.TestCase):
# method-wrapper (descriptor object)
check
({}.
__iter__
,
size
(
'2P'
))
# dict
check
({},
size
(
'n2P'
+
'2nPn'
+
8
*
'n2P'
))
check
({},
size
(
'n2P'
)
+
calcsize
(
'2nPn'
)
+
8
*
calcsize
(
'n2P'
))
longdict
=
{
1
:
1
,
2
:
2
,
3
:
3
,
4
:
4
,
5
:
5
,
6
:
6
,
7
:
7
,
8
:
8
}
check
(
longdict
,
size
(
'n2P'
+
'2nPn'
)
+
16
*
struct
.
calcsize
(
'n2P'
))
# dictionary-key
iterator
check
(
longdict
,
size
(
'n2P'
)
+
calcsize
(
'2nPn'
)
+
16
*
calcsize
(
'n2P'
))
# dictionary-key
view
check
({}.
keys
(),
size
(
'P'
))
# dictionary-value
iterator
# dictionary-value
view
check
({}.
values
(),
size
(
'P'
))
# dictionary-item
iterator
# dictionary-item
view
check
({}.
items
(),
size
(
'P'
))
# dictionary iterator
check
(
iter
({}),
size
(
'P2nPn'
))
# dictionary-keyiterator
check
(
iter
({}.
keys
()),
size
(
'P2nPn'
))
# dictionary-valueiterator
check
(
iter
({}.
values
()),
size
(
'P2nPn'
))
# dictionary-itemiterator
check
(
iter
({}.
items
()),
size
(
'P2nPn'
))
# dictproxy
class
C
(
object
):
pass
check
(
C
.
__dict__
,
size
(
'P'
))
...
...
@@ -1044,8 +1051,8 @@ class SizeofTest(unittest.TestCase):
check
(
set
(
sample
),
s
)
check
(
frozenset
(
sample
),
s
)
else
:
check
(
set
(
sample
),
s
+
newsize
*
struct
.
calcsize
(
'nP'
))
check
(
frozenset
(
sample
),
s
+
newsize
*
struct
.
calcsize
(
'nP'
))
check
(
set
(
sample
),
s
+
newsize
*
calcsize
(
'nP'
))
check
(
frozenset
(
sample
),
s
+
newsize
*
calcsize
(
'nP'
))
# setiterator
check
(
iter
(
set
()),
size
(
'P3n'
))
# slice
...
...
@@ -1059,11 +1066,15 @@ class SizeofTest(unittest.TestCase):
# static type: PyTypeObject
s
=
vsize
(
'P2n15Pl4Pn9Pn11PIP'
)
check
(
int
,
s
)
# (PyTypeObject + PyAsyncMethods + PyNumberMethods + PyMappingMethods +
# PySequenceMethods + PyBufferProcs + 4P)
s
=
vsize
(
'P2n17Pl4Pn9Pn11PIP'
)
+
struct
.
calcsize
(
'34P 3P 3P 10P 2P 4P'
)
s
=
vsize
(
'P2n15Pl4Pn9Pn11PIP'
# PyTypeObject
'3P'
# PyAsyncMethods
'36P'
# PyNumberMethods
'3P'
# PyMappingMethods
'10P'
# PySequenceMethods
'2P'
# PyBufferProcs
'4P'
)
# Separate block for PyDictKeysObject with 4 entries
s
+=
struct
.
calcsize
(
"2nPn"
)
+
4
*
struct
.
calcsize
(
"n2P"
)
s
+=
calcsize
(
"2nPn"
)
+
4
*
calcsize
(
"n2P"
)
# class
class
newstyleclass
(
object
):
pass
check
(
newstyleclass
,
s
)
...
...
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