Issue 21620: OrderedDict KeysView set operations not supported (original) (raw)
I noticed that doing set operations on an OrderedDict KeysView only works when the KeysView is the first input to the expression, and not when it's the second input. This is not the case for dicts.
Python 3.4.1 (default, May 31 2014, 11:25:02) [GCC 4.8.2] on linux Type "help", "copyright", "credits" or "license" for more information.
import collections x = collections.OrderedDict() x.keys() - set() set() set() - x.keys() Traceback (most recent call last): File "", line 1, in TypeError: unsupported operand type(s) for -: 'set' and 'KeysView'
y = {} y.keys() - set() set() set() - y.keys() set()