diff options
author | Damien George <damien.p.george@gmail.com> | 2018-05-19 00:30:42 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-05-23 00:22:35 +1000 |
commit | e686c940525c5b87d02e3dd7bfcdec23cfa996dd (patch) | |
tree | 53782e9b79e3a26eb4ec2c5cd1348b0cea351e25 /tests | |
parent | 0a25fff9562e3051d85db9ca773f203620004742 (diff) |
py/emit: Combine yield value and yield-from emit funcs into one.
Reduces code size by:
bare-arm: -24
minimal x86: -72
unix x64: -200
unix nanbox: -72
stm32: -52
cc3200: -32
esp8266: -84
esp32: -24
Diffstat (limited to 'tests')
-rw-r--r-- | tests/micropython/viper_error.py.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/micropython/viper_error.py.exp b/tests/micropython/viper_error.py.exp index a44fb3ff0..3a8cb0299 100644 --- a/tests/micropython/viper_error.py.exp +++ b/tests/micropython/viper_error.py.exp @@ -20,6 +20,6 @@ ViperTypeError('unary op __neg__ not implemented',) ViperTypeError('unary op __invert__ not implemented',) ViperTypeError('binary op not implemented',) NotImplementedError('native yield',) -NotImplementedError('native yield from',) +NotImplementedError('native yield',) NotImplementedError('conversion to object',) NotImplementedError('casting',) |