Issue 10159: rlcompleter's tests depend on dict order (original) (raw)

Issue10159

Created on 2010-10-20 22:40 by Trundle, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_rlcompleter_order.patch Trundle,2010-10-20 22:40
Messages (3)
msg119240 - (view) Author: Andreas Stührk (Trundle) * Date: 2010-10-20 22:40
Some tests in test_rlcompleter make assumptions about the order of the list of names that the completion methods of a Completer object return. That order is not guaranteed and will break when running the tests under e.g. PyPy. The attached patch against py3k branch tries to fix that.
msg119243 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2010-10-20 23:34
The patch looks good to me.
msg119266 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-10-21 07:40
Applied in r85766. Thanks!
History
Date User Action Args
2022-04-11 14:57:07 admin set github: 54368
2010-10-21 07:40:16 georg.brandl set status: open -> closednosy: + georg.brandlmessages: + resolution: fixedstage: patch review -> resolved
2010-10-20 23:34:52 ned.deily set nosy: + ned.deily, pitroumessages: + stage: patch review
2010-10-20 22:40:13 Trundle create