micropython

Change of lib/builtins.py

82:619142384781
lib/builtins.py
     1.1 --- a/lib/builtins.py	Mon May 05 00:46:38 2008 +0200
     1.2 +++ b/lib/builtins.py	Sat May 10 02:32:20 2008 +0200
     1.3 @@ -260,18 +260,12 @@
     1.4  # Various types.
     1.5  
     1.6  class EllipsisType(object): pass
     1.7 -
     1.8 -class NoneType(object):
     1.9 -    def __bool__(self): pass
    1.10 -    def __str__(self): pass
    1.11 -
    1.12  class NotImplementedType: pass
    1.13  
    1.14  # Special values.
    1.15  
    1.16  True = bool()
    1.17  False = bool()
    1.18 -None = NoneType()
    1.19  Ellipsis = EllipsisType()
    1.20  NotImplemented = NotImplementedType()
    1.21