# HG changeset patch # User Paul Boddie # Date 1481840683 -3600 # Node ID f8eae977988065a336c65673937388cd3abacd9b # Parent a980ec14c2cea68c549b2032a277c09c20e15aed Fixed the NO_END reference. diff -r a980ec14c2ce -r f8eae9779880 lib/__builtins__/span.py --- a/lib/__builtins__/span.py Thu Dec 15 17:06:36 2016 +0100 +++ b/lib/__builtins__/span.py Thu Dec 15 23:24:43 2016 +0100 @@ -31,7 +31,7 @@ "Initialise the slice with the given 'start_or_end', 'end' and 'step'." - if end is xrange.NO_END: + if end is slice.NO_END: self.start = 0 self.end = start_or_end else: