From 406454fdd03c0984a7d4754da71a3e14f3562293 Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 5 Aug 2013 19:45:08 +0200 Subject: Fix common.shell_split with empty strings --- src/shlex.py | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/shlex.py') diff --git a/src/shlex.py b/src/shlex.py index 87a241ed..5b3c556c 100644 --- a/src/shlex.py +++ b/src/shlex.py @@ -95,20 +95,6 @@ class shlex: return tok # No pushback. Get a token. start, end, raw = self.read_token() - # Handle inclusions - # Maybe we got EOF instead? - while raw == self.eof: - if not self.filestack: - return self.eof - else: - self.pop_source() - start, end, raw = self.get_token() - # Neither inclusion nor EOF - if self.debug >= 1: - if raw != self.eof: - print("shlex: token=" + repr(raw)) - else: - print("shlex: token=EOF") return start, end, raw def read_token(self): -- cgit v1.2.3