summaryrefslogtreecommitdiff
path: root/tests/stress/list_sort.py
blob: 3a7701a1e4cc0a75ce53e733f1c1dbf69ae93310 (plain)
1
2
3
4
5
6
# test large list sorting (should not stack overflow)
l = list(range(2000))
l.sort()
print(l[0], l[-1])
l.sort(reverse=True)
print(l[0], l[-1])