File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 15
15
cyphertext
16
16
dum
17
17
deque
18
+ deques
18
19
extint
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ Classes
16
16
17
17
.. function :: deque(iterable, maxlen[, flags])
18
18
19
- Dequeues (double-ended queues) are a list-like container that support O(1)
20
- appends and pops from either side of the deque. New dequeues are created
19
+ Deques (double-ended queues) are a list-like container that support O(1)
20
+ appends and pops from either side of the deque. New deques are created
21
21
using the following arguments:
22
22
23
23
- *iterable * must be the empty tuple, and the new deque is created empty.
Original file line number Diff line number Diff line change 1
- # Tests for dequeues with "check overflow" flag and other extensions
1
+ # Tests for deques with "check overflow" flag and other extensions
2
2
# wrt to CPython.
3
3
try :
4
4
try :
22
22
except ValueError :
23
23
print ("ValueError" )
24
24
25
- # Only fixed-size dequeues are supported, so length arg is mandatory
25
+ # Only fixed-size deques are supported, so length arg is mandatory
26
26
try :
27
27
deque (())
28
28
except TypeError :
You can’t perform that action at this time.
0 commit comments