1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
|
import py
import sys
from pypy.rpython.memory import gcwrapper
from pypy.rpython.memory.test import snippet
from pypy.rpython.test.test_llinterp import get_interpreter
from pypy.rpython.lltypesystem import lltype
from pypy.rpython.lltypesystem.rstr import STR
from pypy.rpython.lltypesystem.lloperation import llop
from pypy.rlib.objectmodel import we_are_translated
from pypy.rlib.objectmodel import compute_unique_id, keepalive_until_here
from pypy.rlib import rgc
from pypy.rlib.rstring import StringBuilder
from pypy.rlib.rarithmetic import LONG_BIT
WORD = LONG_BIT // 8
def stdout_ignore_ll_functions(msg):
strmsg = str(msg)
if "evaluating" in strmsg and "ll_" in strmsg:
return
print >>sys.stdout, strmsg
class GCTest(object):
GC_PARAMS = {}
GC_CAN_MOVE = False
GC_CAN_MALLOC_NONMOVABLE = True
GC_CAN_SHRINK_ARRAY = False
GC_CAN_SHRINK_BIG_ARRAY = False
BUT_HOW_BIG_IS_A_BIG_STRING = 3*WORD
def setup_class(cls):
cls._saved_logstate = py.log._getstate()
py.log.setconsumer("llinterp", py.log.STDOUT)
py.log.setconsumer("llinterp frame", stdout_ignore_ll_functions)
py.log.setconsumer("llinterp operation", None)
def teardown_class(cls):
py.log._setstate(cls._saved_logstate)
def interpret(self, func, values, **kwds):
interp, graph = get_interpreter(func, values, **kwds)
gcwrapper.prepare_graphs_and_create_gc(interp, self.GCClass,
self.GC_PARAMS)
return interp.eval_graph(graph, values)
def test_llinterp_lists(self):
#curr = simulator.current_size
def malloc_a_lot():
i = 0
while i < 10:
i += 1
a = [1] * 10
j = 0
while j < 20:
j += 1
a.append(j)
res = self.interpret(malloc_a_lot, [])
#assert simulator.current_size - curr < 16000 * INT_SIZE / 4
#print "size before: %s, size after %s" % (curr, simulator.current_size)
def test_llinterp_tuples(self):
#curr = simulator.current_size
def malloc_a_lot():
i = 0
while i < 10:
i += 1
a = (1, 2, i)
b = [a] * 10
j = 0
while j < 20:
j += 1
b.append((1, j, i))
res = self.interpret(malloc_a_lot, [])
#assert simulator.current_size - curr < 16000 * INT_SIZE / 4
#print "size before: %s, size after %s" % (curr, simulator.current_size)
def test_global_list(self):
lst = []
def append_to_list(i, j):
lst.append([i] * 50)
return lst[j][0]
res = self.interpret(append_to_list, [0, 0])
assert res == 0
for i in range(1, 15):
res = self.interpret(append_to_list, [i, i - 1])
assert res == i - 1 # crashes if constants are not considered roots
def test_string_concatenation(self):
#curr = simulator.current_size
def concat(j):
lst = []
for i in range(j):
lst.append(str(i))
return len("".join(lst))
res = self.interpret(concat, [100])
assert res == concat(100)
#assert simulator.current_size - curr < 16000 * INT_SIZE / 4
def test_collect(self):
#curr = simulator.current_size
def concat(j):
lst = []
for i in range(j):
lst.append(str(i))
result = len("".join(lst))
if we_are_translated():
# can't call llop.gc__collect directly
llop.gc__collect(lltype.Void)
return result
res = self.interpret(concat, [100])
assert res == concat(100)
#assert simulator.current_size - curr < 16000 * INT_SIZE / 4
def test_collect_0(self):
#curr = simulator.current_size
def concat(j):
lst = []
for i in range(j):
lst.append(str(i))
result = len("".join(lst))
if we_are_translated():
# can't call llop.gc__collect directly
llop.gc__collect(lltype.Void, 0)
return result
res = self.interpret(concat, [100])
assert res == concat(100)
#assert simulator.current_size - curr < 16000 * INT_SIZE / 4
def test_finalizer(self):
class B(object):
pass
b = B()
b.nextid = 0
b.num_deleted = 0
class A(object):
def __init__(self):
self.id = b.nextid
b.nextid += 1
def __del__(self):
b.num_deleted += 1
def f(x):
a = A()
i = 0
while i < x:
i += 1
a = A()
llop.gc__collect(lltype.Void)
llop.gc__collect(lltype.Void)
return b.num_deleted
res = self.interpret(f, [5])
assert res == 6
def test_finalizer_calls_malloc(self):
class B(object):
pass
b = B()
b.nextid = 0
b.num_deleted = 0
class A(object):
def __init__(self):
self.id = b.nextid
b.nextid += 1
def __del__(self):
b.num_deleted += 1
C()
class C(A):
def __del__(self):
b.num_deleted += 1
def f(x):
a = A()
i = 0
while i < x:
i += 1
a = A()
llop.gc__collect(lltype.Void)
llop.gc__collect(lltype.Void)
return b.num_deleted
res = self.interpret(f, [5])
assert res == 12
def test_finalizer_calls_collect(self):
class B(object):
pass
b = B()
b.nextid = 0
b.num_deleted = 0
class A(object):
def __init__(self):
self.id = b.nextid
b.nextid += 1
def __del__(self):
b.num_deleted += 1
llop.gc__collect(lltype.Void)
def f(x):
a = A()
i = 0
while i < x:
i += 1
a = A()
llop.gc__collect(lltype.Void)
llop.gc__collect(lltype.Void)
return b.num_deleted
res = self.interpret(f, [5])
assert res == 6
def test_finalizer_resurrects(self):
class B(object):
pass
b = B()
b.nextid = 0
b.num_deleted = 0
class A(object):
def __init__(self):
self.id = b.nextid
b.nextid += 1
def __del__(self):
b.num_deleted += 1
b.a = self
def f(x):
a = A()
i = 0
while i < x:
i += 1
a = A()
llop.gc__collect(lltype.Void)
llop.gc__collect(lltype.Void)
aid = b.a.id
b.a = None
# check that __del__ is not called again
llop.gc__collect(lltype.Void)
llop.gc__collect(lltype.Void)
return b.num_deleted * 10 + aid + 100 * (b.a is None)
res = self.interpret(f, [5])
assert 160 <= res <= 165
def test_weakref(self):
import weakref, gc
class A(object):
pass
def g():
a = A()
return weakref.ref(a)
def f():
a = A()
ref = weakref.ref(a)
result = ref() is a
ref = g()
llop.gc__collect(lltype.Void)
result = result and (ref() is None)
# check that a further collection is fine
llop.gc__collect(lltype.Void)
result = result and (ref() is None)
return result
res = self.interpret(f, [])
assert res
def test_weakref_to_object_with_finalizer(self):
import weakref, gc
class A(object):
count = 0
a = A()
class B(object):
def __del__(self):
a.count += 1
def g():
b = B()
return weakref.ref(b)
def f():
ref = g()
llop.gc__collect(lltype.Void)
llop.gc__collect(lltype.Void)
result = a.count == 1 and (ref() is None)
return result
res = self.interpret(f, [])
assert res
def test_id(self):
class A(object):
pass
a1 = A()
def f():
a2 = A()
a3 = A()
id1 = compute_unique_id(a1)
id2 = compute_unique_id(a2)
id3 = compute_unique_id(a3)
llop.gc__collect(lltype.Void)
error = 0
if id1 != compute_unique_id(a1): error += 1
if id2 != compute_unique_id(a2): error += 2
if id3 != compute_unique_id(a3): error += 4
return error
res = self.interpret(f, [])
assert res == 0
def test_finalizer_calls_malloc_during_minor_collect(self):
# originally a GenerationGC test, this has also found bugs in other GCs
class B(object):
pass
b = B()
b.nextid = 0
b.num_deleted = 0
b.all = []
class A(object):
def __init__(self):
self.id = b.nextid
b.nextid += 1
def __del__(self):
b.num_deleted += 1
b.all.append(D(b.num_deleted))
class D(object):
# make a big object that does not use malloc_varsize
def __init__(self, x):
self.x00 = self.x01 = self.x02 = self.x03 = self.x04 = x
self.x10 = self.x11 = self.x12 = self.x13 = self.x14 = x
self.x20 = self.x21 = self.x22 = self.x23 = self.x24 = x
def f(x):
i = 0
all = [None] * x
a = A()
while i < x:
d = D(i)
all[i] = d
i += 1
return b.num_deleted + len(all)
res = self.interpret(f, [500])
assert res == 1 + 500
def test_collect_during_collect(self):
class B(object):
pass
b = B()
b.nextid = 1
b.num_deleted = 0
b.num_deleted_c = 0
class A(object):
def __init__(self):
self.id = b.nextid
b.nextid += 1
def __del__(self):
llop.gc__collect(lltype.Void)
b.num_deleted += 1
C()
C()
class C(A):
def __del__(self):
b.num_deleted += 1
b.num_deleted_c += 1
def f(x, y):
persistent_a1 = A()
persistent_a2 = A()
i = 0
while i < x:
i += 1
a = A()
persistent_a3 = A()
persistent_a4 = A()
llop.gc__collect(lltype.Void)
llop.gc__collect(lltype.Void)
b.bla = persistent_a1.id + persistent_a2.id + persistent_a3.id + persistent_a4.id
print b.num_deleted_c
return b.num_deleted
res = self.interpret(f, [4, 42])
assert res == 12
def test_print_leak(self):
def f(n):
for i in range(n):
print i
return 42
res = self.interpret(f, [10])
assert res == 42
def test_weakref_across_minor_collection(self):
import weakref
class A:
pass
def f(x):
a = A()
a.foo = x
ref = weakref.ref(a)
all = [None] * x
i = 0
while i < x:
all[i] = [i] * i
i += 1
assert ref() is a
llop.gc__collect(lltype.Void)
assert ref() is a
return a.foo + len(all)
res = self.interpret(f, [20]) # for GenerationGC, enough for a minor collection
assert res == 20 + 20
def test_young_weakref_to_old_object(self):
import weakref
class A:
pass
def f(x):
a = A()
llop.gc__collect(lltype.Void)
# 'a' is old, 'ref' is young
ref = weakref.ref(a)
# now trigger a minor collection
all = [None] * x
i = 0
while i < x:
all[i] = [i] * i
i += 1
# now 'a' is old, but 'ref' did not move
assert ref() is a
llop.gc__collect(lltype.Void)
# now both 'a' and 'ref' have moved
return ref() is a
res = self.interpret(f, [20]) # for GenerationGC, enough for a minor collection
assert res == True
def test_many_weakrefs(self):
# test for the case where allocating the weakref itself triggers
# a collection
import weakref
class A:
pass
def f(x):
a = A()
i = 0
while i < x:
ref = weakref.ref(a)
assert ref() is a
i += 1
self.interpret(f, [1100])
def test_nongc_static_root(self):
from pypy.rpython.lltypesystem import lltype
T1 = lltype.GcStruct("C", ('x', lltype.Signed))
T2 = lltype.Struct("C", ('p', lltype.Ptr(T1)))
static = lltype.malloc(T2, immortal=True)
def f():
t1 = lltype.malloc(T1)
t1.x = 42
static.p = t1
llop.gc__collect(lltype.Void)
return static.p.x
res = self.interpret(f, [])
assert res == 42
def test_can_move(self):
TP = lltype.GcArray(lltype.Float)
def func():
return rgc.can_move(lltype.malloc(TP, 1))
assert self.interpret(func, []) == self.GC_CAN_MOVE
def test_malloc_nonmovable(self):
TP = lltype.GcArray(lltype.Char)
def func():
a = rgc.malloc_nonmovable(TP, 3)
if a:
assert not rgc.can_move(a)
return 1
return 0
assert self.interpret(func, []) == int(self.GC_CAN_MALLOC_NONMOVABLE)
def test_malloc_nonmovable_fixsize(self):
S = lltype.GcStruct('S', ('x', lltype.Float))
TP = lltype.GcStruct('T', ('s', lltype.Ptr(S)))
def func():
try:
a = rgc.malloc_nonmovable(TP)
rgc.collect()
if a:
assert not rgc.can_move(a)
return 1
return 0
except Exception, e:
return 2
assert self.interpret(func, []) == int(self.GC_CAN_MALLOC_NONMOVABLE)
def test_shrink_array(self):
from pypy.rpython.lltypesystem.rstr import STR
def f(n, m, gc_can_shrink_array):
ptr = lltype.malloc(STR, n)
ptr.hash = 0x62
ptr.chars[0] = 'A'
ptr.chars[1] = 'B'
ptr.chars[2] = 'C'
ptr2 = rgc.ll_shrink_array(ptr, 2)
assert (ptr == ptr2) == gc_can_shrink_array
rgc.collect()
return ( ord(ptr2.chars[0]) +
(ord(ptr2.chars[1]) << 8) +
(len(ptr2.chars) << 16) +
(ptr2.hash << 24))
flag = self.GC_CAN_SHRINK_ARRAY
assert self.interpret(f, [3, 0, flag]) == 0x62024241
# with larger numbers, it gets allocated outside the semispace
# with some GCs.
flag = self.GC_CAN_SHRINK_BIG_ARRAY
bigsize = self.BUT_HOW_BIG_IS_A_BIG_STRING
assert self.interpret(f, [bigsize, 0, flag]) == 0x62024241
def test_tagged_simple(self):
from pypy.rlib.objectmodel import UnboxedValue
class Unrelated(object):
pass
u = Unrelated()
u.x = UnboxedObject(47)
def fn(n):
rgc.collect() # check that a prebuilt tagged pointer doesn't explode
if n > 0:
x = BoxedObject(n)
else:
x = UnboxedObject(n)
u.x = x # invoke write barrier
rgc.collect()
return x.meth(100)
res = self.interpret(fn, [1000], taggedpointers=True)
assert res == 1102
res = self.interpret(fn, [-1000], taggedpointers=True)
assert res == -897
def test_tagged_prebuilt(self):
class F:
pass
f = F()
f.l = [UnboxedObject(10)]
def fn(n):
if n > 0:
x = BoxedObject(n)
else:
x = UnboxedObject(n)
f.l.append(x)
rgc.collect()
return f.l[-1].meth(100)
res = self.interpret(fn, [1000], taggedpointers=True)
assert res == 1102
res = self.interpret(fn, [-1000], taggedpointers=True)
assert res == -897
def test_tagged_id(self):
from pypy.rlib.objectmodel import UnboxedValue, compute_unique_id
class Unrelated(object):
pass
u = Unrelated()
u.x = UnboxedObject(0)
def fn(n):
id_prebuilt1 = compute_unique_id(u.x)
if n > 0:
x = BoxedObject(n)
else:
x = UnboxedObject(n)
id_x1 = compute_unique_id(x)
rgc.collect() # check that a prebuilt tagged pointer doesn't explode
id_prebuilt2 = compute_unique_id(u.x)
id_x2 = compute_unique_id(x)
print u.x, id_prebuilt1, id_prebuilt2
print x, id_x1, id_x2
return ((id_x1 == id_x2) * 1 +
(id_prebuilt1 == id_prebuilt2) * 10 +
(id_x1 != id_prebuilt1) * 100)
res = self.interpret(fn, [1000], taggedpointers=True)
assert res == 111
res = self.interpret(fn, [-1000], taggedpointers=True)
assert res == 111
def test_writebarrier_before_copy(self):
S = lltype.GcStruct('S', ('x', lltype.Char))
TP = lltype.GcArray(lltype.Ptr(S))
def fn():
l = lltype.malloc(TP, 100)
l2 = lltype.malloc(TP, 100)
for i in range(100):
l[i] = lltype.malloc(S)
rgc.ll_arraycopy(l, l2, 50, 0, 50)
x = []
# force minor collect
t = (1, lltype.malloc(S))
for i in range(20):
x.append(t)
for i in range(50):
assert l2[i] == l[50 + i]
return 0
self.interpret(fn, [])
def test_stringbuilder(self):
def fn():
s = StringBuilder(4)
s.append("abcd")
s.append("defg")
s.append("rty")
s.append_multiple_char('y', 1000)
rgc.collect()
s.append_multiple_char('y', 1000)
res = s.build()[1000]
rgc.collect()
return ord(res)
res = self.interpret(fn, [])
assert res == ord('y')
from pypy.rlib.objectmodel import UnboxedValue
class TaggedBase(object):
__slots__ = ()
def meth(self, x):
raise NotImplementedError
class BoxedObject(TaggedBase):
attrvalue = 66
def __init__(self, normalint):
self.normalint = normalint
def meth(self, x):
return self.normalint + x + 2
class UnboxedObject(TaggedBase, UnboxedValue):
__slots__ = 'smallint'
def meth(self, x):
return self.smallint + x + 3
class TestMarkSweepGC(GCTest):
from pypy.rpython.memory.gc.marksweep import MarkSweepGC as GCClass
class TestSemiSpaceGC(GCTest, snippet.SemiSpaceGCTests):
from pypy.rpython.memory.gc.semispace import SemiSpaceGC as GCClass
GC_CAN_MOVE = True
GC_CAN_MALLOC_NONMOVABLE = False
GC_CAN_SHRINK_ARRAY = True
GC_CAN_SHRINK_BIG_ARRAY = True
class TestGrowingSemiSpaceGC(TestSemiSpaceGC):
GC_PARAMS = {'space_size': 16*WORD}
class TestGenerationalGC(TestSemiSpaceGC):
from pypy.rpython.memory.gc.generation import GenerationGC as GCClass
class TestMarkCompactGC(TestSemiSpaceGC):
from pypy.rpython.memory.gc.markcompact import MarkCompactGC as GCClass
GC_PARAMS = {'space_size': 65536+16384}
GC_CAN_SHRINK_ARRAY = False
GC_CAN_SHRINK_BIG_ARRAY = False
def test_finalizer_order(self):
py.test.skip("Not implemented yet")
class TestHybridGC(TestGenerationalGC):
from pypy.rpython.memory.gc.hybrid import HybridGC as GCClass
GC_CAN_MALLOC_NONMOVABLE = True
GC_CAN_SHRINK_BIG_ARRAY = False
def test_ref_from_rawmalloced_to_regular(self):
import gc
def concat(j):
lst = []
for i in range(j):
lst.append(str(i))
gc.collect()
return len("".join(lst))
res = self.interpret(concat, [100])
assert res == concat(100)
def test_longliving_weakref(self):
# test for the case where a weakref points to a very old object
# that was made non-movable after several collections
import gc, weakref
class A:
pass
def step1(x):
a = A()
a.x = 42
ref = weakref.ref(a)
i = 0
while i < x:
gc.collect()
i += 1
assert ref() is a
assert ref().x == 42
return ref
def step2(ref):
gc.collect() # 'a' is freed here
assert ref() is None
def f(x):
ref = step1(x)
step2(ref)
self.interpret(f, [10])
def test_longliving_object_with_finalizer(self):
class B(object):
pass
b = B()
b.nextid = 0
b.num_deleted = 0
class A(object):
def __init__(self):
self.id = b.nextid
b.nextid += 1
def __del__(self):
b.num_deleted += 1
def f(x):
a = A()
i = 0
while i < x:
i += 1
a = A()
llop.gc__collect(lltype.Void)
llop.gc__collect(lltype.Void)
llop.gc__collect(lltype.Void)
return b.num_deleted
res = self.interpret(f, [15])
assert res == 16
def test_malloc_nonmovable_fixsize(self):
py.test.skip("Not supported")
class TestHybridGCSmallHeap(GCTest):
from pypy.rpython.memory.gc.hybrid import HybridGC as GCClass
GC_CAN_MOVE = False # with this size of heap, stuff gets allocated
# in 3rd gen.
GC_CAN_MALLOC_NONMOVABLE = True
GC_PARAMS = {'space_size': 48*WORD,
'min_nursery_size': 12*WORD,
'nursery_size': 12*WORD,
'large_object': 3*WORD,
'large_object_gcptrs': 3*WORD,
'generation3_collect_threshold': 5,
}
def test_gen3_to_gen2_refs(self):
class A(object):
def __init__(self):
self.x1 = -1
def f(x):
loop = A()
loop.next = loop
loop.prev = loop
i = 0
while i < x:
i += 1
a1 = A()
a1.x1 = i
a2 = A()
a2.x1 = i + 1000
a1.prev = loop.prev
a1.prev.next = a1
a1.next = loop
loop.prev = a1
a2.prev = loop
a2.next = loop.next
a2.next.prev = a2
loop.next = a2
i = 0
a = loop
while True:
a = a.next
i += 1
if a is loop:
return i
res = self.interpret(f, [200])
assert res == 401
def test_malloc_nonmovable_fixsize(self):
py.test.skip("Not supported")
class TestMiniMarkGC(TestSemiSpaceGC):
from pypy.rpython.memory.gc.minimark import MiniMarkGC as GCClass
GC_CAN_SHRINK_BIG_ARRAY = False
GC_CAN_MALLOC_NONMOVABLE = True
BUT_HOW_BIG_IS_A_BIG_STRING = 11*WORD
class TestMiniMarkGCCardMarking(TestMiniMarkGC):
GC_PARAMS = {'card_page_indices': 4}
|