Skip to content

Commit

Permalink
Made clear a reserved word and added a entry to the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jakerockland committed Dec 12, 2018
1 parent d974624 commit e72fae4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Following the principles and goals, Vyper **does not** provide the following fea
Compatibility-breaking Changelog
********************************

8 **2018.12.12**: Disallow use of `None`, disallow use of `del`, implemented `clear()` built-in function.
* **2018.11.19**: Change mapping syntax to use map(). (`VIP1026 <https://github.com/ethereum/vyper/issues/564>`_)
* **2018.10.02**: Change the convert style to use types instead of string. (`VIP1026 <https://github.com/ethereum/vyper/issues/1026>`_)
* **2018.09.24**: Add support for custom constants.
Expand Down
2 changes: 1 addition & 1 deletion vyper/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def in_bounds(cls, type_str, value):
'pass', 'def', 'push', 'dup', 'swap', 'send', 'call',
'selfdestruct', 'assert', 'stop', 'throw',
'raise', 'init', '_init_', '___init___', '____init____',
'true', 'false', 'self', 'this', 'continue', 'none',
'true', 'false', 'self', 'this', 'continue', 'none', 'clear',
'ether', 'wei', 'finney', 'szabo', 'shannon', 'lovelace', 'ada', 'babbage', 'gwei', 'kwei', 'mwei', 'twei', 'pwei', 'contract',
'units',
'zero_address', 'empty_bytes32' 'max_int128', 'min_int128', 'max_decimal', 'min_decimal', 'max_uint256', # constants
Expand Down

0 comments on commit e72fae4

Please sign in to comment.