Files
swift-mirror/benchmark/single-source
tbkka 2c8ae98e5e Python3 compatibility for Benchmarks (#33039)
Three issues addressed here:

1. Dependency on dictionary iteration order

 CharacterProperties.swift.gyb iterated a dictionary to produce its output.
 Changed this to a list of tuples to ensure the order is predictable.

2. Python3 `map` returns an iterator, not a list

 Changed a bunch of `map` calls to `list(map(...))` to ensure the result is a list

3. Python3 `int()` expects a string, won't accept a list of characters

 Added a concatenation step that is effectively a no-op on Python2
2020-07-22 12:24:10 -07:00
..
2018-12-07 15:09:27 +01:00
2018-12-07 16:27:06 +01:00
2019-01-22 09:26:05 +01:00
2020-02-25 13:53:20 -08:00
2019-01-22 09:26:05 +01:00
2019-02-01 16:47:02 +01:00