Files
Phoenix/samples/floatcanvas
Per A. Brodtkorb 033c18fd9f Fixes issue #1556
Replaced XXX.keys() calls with idiomatic python 3 calls that are compatible with python 2 such as eg:
 * replaced "y = xxx.keys()" or "y = list(xxx.keys())" with just "y = list(xxx)"
 * replaced "sorted(xxx.keys())" or "sorted(list(xxx.keys()))" with just "sorted(xxx)"
 * replaced "if not A in B.keys():" with "if A not in B:"
 * replaced "for A in B.keys():"  with "for A in B:"

See also https://python-future.org/compatible_idioms.html
https://python-future.org/compatible_idioms.html#dict-keys-values-items-as-a-list
2020-03-20 18:51:19 +01:00
..
2018-11-13 16:08:12 -06:00
2020-03-20 18:51:19 +01:00
2016-12-05 16:34:47 -06:00
2020-03-20 18:51:19 +01:00
2020-03-20 18:51:19 +01:00
2016-12-05 16:34:47 -06:00
2020-03-20 18:51:19 +01:00
2018-11-13 16:08:12 -06:00
2020-02-27 14:33:23 -08:00
2016-12-05 16:34:47 -06:00
2016-12-05 16:34:47 -06:00