Skip to content

Commit 1da26b4

Browse files
committed
Speedup doctest
1 parent c723c10 commit 1da26b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sortedcontainers/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
>>> sl = SortedList(['e', 'a', 'c', 'd', 'b'])
1818
>>> sl
1919
SortedList(['a', 'b', 'c', 'd', 'e'])
20-
>>> sl *= 10_000_000
20+
>>> sl *= 1000000
2121
>>> sl.count('c')
22-
10000000
22+
1000000
2323
>>> sl[-3:]
2424
['e', 'e', 'e']
2525
>>> from sortedcontainers import SortedDict

0 commit comments

Comments
 (0)