Issue #24113: Remove unreachable code in shlex.

This commit is contained in:
Raymond Hettinger 2015-05-04 22:45:47 -04:00
parent 00607e91bd
commit ad17be7682
1 changed files with 0 additions and 3 deletions

View File

@ -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"