diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-06 17:51:20 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-12-06 18:10:17 -0500 |
commit | 9f450f1bf203635c88d83f76da403c565fb950e8 (patch) | |
tree | c3c27467d9b62fc65866691b96882cc9d74a4fed /testsuite/driver/typing_stubs.py | |
parent | f171b3582d44746bf8b08897a3b23bc97e5dbdda (diff) | |
download | haskell-wip/simplify-perf-metrics.tar.gz |
testsuite: Simplify and clarify performance test baseline searchwip/simplify-perf-metrics
The previous implementation was extremely complicated, seemingly to
allow the local and CI namespaces to be searched incrementally. However,
it's quite unclear why this is needed and moreover the implementation
seems to have had quadratic runtime cost in the search depth(!).
Diffstat (limited to 'testsuite/driver/typing_stubs.py')
-rw-r--r-- | testsuite/driver/typing_stubs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/driver/typing_stubs.py b/testsuite/driver/typing_stubs.py index 6f17b5a35c..5c3cd813fa 100644 --- a/testsuite/driver/typing_stubs.py +++ b/testsuite/driver/typing_stubs.py @@ -1,5 +1,5 @@ -# Stub definitions for things provided by the typing package -# for use by older Python versions. +# Stub definitions for things provided by the `typing` package for use by older +# Python versions which don't ship with `typing`. import collections |