From: Raymond Hettinger Date: Tue, 5 May 2015 02:45:47 +0000 (-0400) Subject: Issue #24113: Remove unreachable code in shlex. X-Git-Tag: v3.5.0b1~244 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad17be76823d6570641639d921a3cf4a09bbc86a;p=python Issue #24113: Remove unreachable code in shlex. --- diff --git a/Lib/shlex.py b/Lib/shlex.py index 4672553f1c..f08391800b 100644 --- a/Lib/shlex.py +++ b/Lib/shlex.py @@ -49,9 +49,6 @@ class shlex: self.token = '' self.filestack = deque() self.source = None - if self.debug: - print('shlex: reading from %s, line %d' \ - % (self.instream, self.lineno)) def push_token(self, tok): "Push a token onto the stack popped by the get_token method"