From 31302eb7079452169aa21208522f2a2c3cd6c138 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 14 Jan 2013 16:26:07 +0100 Subject: [PATCH] Minor update --- lib/utils/xrange.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/utils/xrange.py b/lib/utils/xrange.py index ff8c7256d..088f0d615 100644 --- a/lib/utils/xrange.py +++ b/lib/utils/xrange.py @@ -19,8 +19,6 @@ class xrange(object): else: self._slice = slice(*args) if self._slice.stop is None: - # slice(*args) will never put None in stop unless it was - # given as None explicitly. raise TypeError("xrange stop must not be None") @property