lib/__builtins__/span.py | raw changeset files shortlog |
1.1 --- a/lib/__builtins__/span.py Thu Dec 15 17:06:36 2016 +0100 1.2 +++ b/lib/__builtins__/span.py Thu Dec 15 23:24:43 2016 +0100 1.3 @@ -31,7 +31,7 @@ 1.4 1.5 "Initialise the slice with the given 'start_or_end', 'end' and 'step'." 1.6 1.7 - if end is xrange.NO_END: 1.8 + if end is slice.NO_END: 1.9 self.start = 0 1.10 self.end = start_or_end 1.11 else: