Message317422
I updated the pull request, now reversed work on the dict and dict views:
➜ cpython git:(master) ./python.exe
Python 3.8.0a0 (heads/master-dirty:128576b88c, May 23 2018, 16:33:46)
[Clang 9.0.0 (clang-900.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> d = dict(a=1, b=2)
>>> list(reversed(d))
['b', 'a']
>>> list(reversed(d.keys()))
['b', 'a']
>>> list(reversed(d.values()))
[2, 1]
>>> list(reversed(d.items()))
[('b', 2), ('a', 1)]
reversed on dict and dict views is not symmetric and applying twice will raise TypeError which is also the behavior on list. I'm not sure why this behavior has been chosen but it's coherent. |
|
Date |
User |
Action |
Args |
2018-05-23 16:18:18 | remi.lapeyre | set | recipients:
+ remi.lapeyre, rhettinger, methane, serhiy.storchaka, selik |
2018-05-23 16:18:18 | remi.lapeyre | set | messageid: <1527092298.03.0.682650639539.issue33462@psf.upfronthosting.co.za> |
2018-05-23 16:18:18 | remi.lapeyre | link | issue33462 messages |
2018-05-23 16:18:17 | remi.lapeyre | create | |
|