# HG changeset patch # User Paul Boddie # Date 1382650241 -7200 # Node ID d003bf80daaaa9c4b8da37a278fec0c80e94688f # Parent 05e4a6fb885ec4aa526b2ee780c6e0529feaa1ca Added NoneType as a pre-built class. diff -r 05e4a6fb885e -r d003bf80daaa micropython/data.py --- a/micropython/data.py Thu Oct 24 22:43:09 2013 +0200 +++ b/micropython/data.py Thu Oct 24 23:30:41 2013 +0200 @@ -1454,6 +1454,7 @@ "str" : Class("str"), "unicode" : Class("unicode"), "type" : Class("type"), + "NoneType" : Class("NoneType"), } def get_constant_class(name):