[issue25616] Extract OrderedDict tests into separate file

2015-11-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue25616] Extract OrderedDict tests into separate file

2015-11-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8d9a0540adf9 by Serhiy Storchaka in branch '3.4': Issue #25616: Tests for OrderedDict are extracted from test_collections https://hg.python.org/cpython/rev/8d9a0540adf9 New changeset 46e95e0eaae5 by Serhiy Storchaka in branch '3.5': Issue #25616: Te

[issue25616] Extract OrderedDict tests into separate file

2015-11-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Raymond. Here is a patch. It is in Git format, hence Rietveld will not work with it. During creating a patch I found a bug in test_dict_update, it tested only default implementation and didn't test subclasses. -- keywords: +patch stage: ->

[issue25616] Extract OrderedDict tests into separate file

2015-11-15 Thread Raymond Hettinger
Raymond Hettinger added the comment: If it helps with all the great work you're doing, go ahead and move the OD tests out to a separate file. -- ___ Python tracker ___ _

[issue25616] Extract OrderedDict tests into separate file

2015-11-13 Thread Eric Snow
Eric Snow added the comment: FWIW, I totally support this. I originally had a patch up that did so but Raymond indicated that he'd rather not split the tests out though I made exactly the same arguments that you have. Perhaps he's changed his mind in the intervening years (or I misunderstood

[issue25616] Extract OrderedDict tests into separate file

2015-11-13 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: OrderedDict tests now are about 1/3 of test_collections, and I think their volume will grow. I suggest to extract these tests into separate file test_ordereddict. There are precedences: test_deque (deque also is implemented in C), and test_userdict, test_u