Lichen

Change of generator.py

920:b4b4179c39f2
generator.py int-as-function
     1.1 --- a/generator.py	Tue Jun 22 23:03:52 2021 +0200
     1.2 +++ b/generator.py	Tue Jun 22 23:36:04 2021 +0200
     1.3 @@ -3,7 +3,7 @@
     1.4  """
     1.5  Generate C code from object layouts and other deduced information.
     1.6  
     1.7 -Copyright (C) 2015, 2016, 2017, 2018, 2019 Paul Boddie <paul@boddie.org.uk>
     1.8 +Copyright (C) 2015, 2016, 2017, 2018, 2019, 2021 Paul Boddie <paul@boddie.org.uk>
     1.9  
    1.10  This program is free software; you can redistribute it and/or modify it under
    1.11  the terms of the GNU General Public License as published by the Free Software
    1.12 @@ -43,7 +43,7 @@
    1.13  
    1.14      dict_type = "__builtins__.dict.dict"
    1.15      function_type = "__builtins__.core.function"
    1.16 -    int_type = "__builtins__.int.int"
    1.17 +    int_type = "__builtins__.int.integer"
    1.18      list_type = "__builtins__.list.list"
    1.19      none_type = "__builtins__.none.NoneType"
    1.20      string_type = "__builtins__.str.string"