Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Lib/test/test_deque.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
import random
import struct

from Lib.test import test_list

BIG = 100000

def fail():
Expand Down Expand Up @@ -903,6 +905,9 @@ def test_subclass_with_kwargs(self):
# SF bug #1486663 -- this used to erroneously raise a TypeError
SubclassWithKwargs(newarg=1)

class TestList(test_list.ListTest):
type2test = deque

class TestSequence(seq_tests.CommonTest):
type2test = deque

Expand Down
Loading