File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -1030,21 +1030,6 @@ def __init__(self, order):
1030
1030
d .update (o .__dict__ )
1031
1031
self .assertEqual (list (d ), ["c" , "b" , "a" ])
1032
1032
1033
- @support .cpython_only
1034
- def test_splittable_to_generic_combinedtable (self ):
1035
- """split table must be correctly resized and converted to generic combined table"""
1036
- class C :
1037
- pass
1038
-
1039
- a = C ()
1040
- a .x = 1
1041
- d = a .__dict__
1042
- before_resize = sys .getsizeof (d )
1043
- d [2 ] = 2 # split table is resized to a generic combined table
1044
-
1045
- self .assertGreater (sys .getsizeof (d ), before_resize )
1046
- self .assertEqual (list (d ), ['x' , 2 ])
1047
-
1048
1033
def test_iterator_pickling (self ):
1049
1034
for proto in range (pickle .HIGHEST_PROTOCOL + 1 ):
1050
1035
data = {1 :"a" , 2 :"b" , 3 :"c" }
You can’t perform that action at this time.
0 commit comments