8000 Issue #24113: Remove unreachable code in shlex. · python/cpython@ad17be7 · GitHub
[go: up one dir, main page]

Skip to content

Commit ad17be7

Browse files
committed
Issue #24113: Remove unreachable code in shlex.
1 parent 00607e9 commit ad17be7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Lib/shlex.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ def __init__(self, instream=None, infile=None, posix=False):
4949
self.token = ''
5050
self.filestack = deque()
5151
self.source = None
52-
if self.debug:
53-
print('shlex: reading from %s, line %d' \
54-
% (self.instream, self.lineno))
5552

5653
def push_token(self, tok):
5754
"Push a token onto the stack popped by the get_token method"

0 commit comments

Comments
 (0)
0