Lichen

Change of lib/native/limits.py

795:345fe332fcf1
lib/native/limits.py
     1.1 --- a/lib/native/limits.py	Fri Mar 31 23:26:47 2017 +0200
     1.2 +++ b/lib/native/limits.py	Fri Mar 31 23:27:55 2017 +0200
     1.3 @@ -8,7 +8,7 @@
     1.4  non-core exceptions used by the native functions because they need to be
     1.5  identified as being needed by the program.
     1.6  
     1.7 -Copyright (C) 2011, 2015, 2016 Paul Boddie <paul@boddie.org.uk>
     1.8 +Copyright (C) 2011, 2015, 2016, 2017 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 @@ -24,7 +24,9 @@
    1.13  this program.  If not, see <http://www.gnu.org/licenses/>.
    1.14  """
    1.15  
    1.16 -def get_maxint(): pass
    1.17 -def get_minint(): pass
    1.18 +# NOTE: Example values used to provide type information.
    1.19 +
    1.20 +def get_maxint(): return 0
    1.21 +def get_minint(): return 0
    1.22  
    1.23  # vim: tabstop=4 expandtab shiftwidth=4