diff options
author | Damien George <damien.p.george@gmail.com> | 2017-10-03 17:56:27 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-10-03 17:56:27 +1100 |
commit | 2ac1364688cd3ee313661e82a336663551986fc8 (patch) | |
tree | 4e69bc7e8d09cb3e4456275e7eba8fcffcd4de0c /tests/misc/non_compliant.py.exp | |
parent | 01978648fdc317c13b17ba186c82df4fb8a5cbac (diff) | |
download | micropython-2ac1364688cd3ee313661e82a336663551986fc8.tar.gz micropython-2ac1364688cd3ee313661e82a336663551986fc8.zip |
py/objset: Check that RHS of a binary op is a set/frozenset.
CPython docs explicitly state that the RHS of a set/frozenset binary op
must be a set to prevent user errors. It also preserves commutativity of
the ops, eg: "abc" & set() is a TypeError, and so should be set() & "abc".
This change actually decreases unix (x64) code by 160 bytes; it increases
stm32 by 4 bytes and esp8266 by 28 bytes (but previous patch already
introduced a much large saving).
Diffstat (limited to 'tests/misc/non_compliant.py.exp')
-rw-r--r-- | tests/misc/non_compliant.py.exp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/misc/non_compliant.py.exp b/tests/misc/non_compliant.py.exp index ba5590acc0..9c157fd5bd 100644 --- a/tests/misc/non_compliant.py.exp +++ b/tests/misc/non_compliant.py.exp @@ -3,8 +3,6 @@ AttributeError TypeError NotImplementedError NotImplementedError -True -True TypeError, ValueError NotImplementedError NotImplementedError |