Lichen

Change of docs/wiki/ToDo

926:1429afa1fe50
docs/wiki/ToDo int-as-function
     1.1 --- a/docs/wiki/ToDo	Wed Jun 23 01:52:42 2021 +0200
     1.2 +++ b/docs/wiki/ToDo	Sun Jun 27 19:29:37 2021 +0200
     1.3 @@ -14,14 +14,14 @@
     1.4  
     1.5  === Numeric Types ===
     1.6  
     1.7 -Support all the numeric types. Currently, only `int` is supported, but `float`
     1.8 -merely requires some native code handling operations and testing for exception
     1.9 -conditions. A representation for `long` needs to be determined, and `complex`
    1.10 -probably just needs some methods implementing.
    1.11 +Support all the numeric types. Currently, only `int` is supported (as
    1.12 +`integer`), but `float` merely requires some native code handling operations
    1.13 +and testing for exception conditions. A representation for `long` needs to be
    1.14 +determined, and `complex` probably just needs some methods implementing.
    1.15  
    1.16 -Support promotion between some of the numeric types. Currently, `int` values
    1.17 -that overflow raise `OverflowError`, as was done in Python before automatic
    1.18 -promotion to `long`.
    1.19 +Support promotion between some of the numeric types. Currently, `integer`
    1.20 +values that overflow raise `OverflowError`, as was done in Python before
    1.21 +automatic promotion to `long`.
    1.22  
    1.23  === String Types ===
    1.24