# HG changeset patch # User paulb@localhost.localdomain # Date 1182467179 -7200 # Node ID 963f28594cbf47826a677ea0474aa29353bf8030 # Parent e9747fe6aca2a58f623f2e37b3e9fb4bf334e2b0 Added NoneType. diff -r e9747fe6aca2 -r 963f28594cbf lib/builtins.py --- a/lib/builtins.py Fri Jun 22 00:54:18 2007 +0200 +++ b/lib/builtins.py Fri Jun 22 01:06:19 2007 +0200 @@ -758,6 +758,8 @@ def __str__(self): return "None" +NoneType = none + class slice: def __init__(self, start_or_end, end=None, step=None): if end is None: