summaryrefslogtreecommitdiffstats
path: root/Lib/shlex.py
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2013-02-23 22:03:15 (GMT)
committerPetri Lehtinen <petri@digip.org>2013-02-23 22:12:03 (GMT)
commit0362b54fd9e8158c4b62386f1bd654daf1095ed4 (patch)
tree53edcc7868b100402a9de75f69d4bb111905ff74 /Lib/shlex.py
parent7a05113ccf76b077b138d40794e52f6881a57c4c (diff)
downloadcpython-0362b54fd9e8158c4b62386f1bd654daf1095ed4.zip
cpython-0362b54fd9e8158c4b62386f1bd654daf1095ed4.tar.gz
cpython-0362b54fd9e8158c4b62386f1bd654daf1095ed4.tar.bz2
Revert "Issue #16121: Fix line number accounting in shlex"
Diffstat (limited to 'Lib/shlex.py')
-rw-r--r--Lib/shlex.py16
1 files changed, 1 insertions, 15 deletions
diff --git a/Lib/shlex.py b/Lib/shlex.py
index b9fd1dd..3edd3db 100644
--- a/Lib/shlex.py
+++ b/Lib/shlex.py
@@ -44,7 +44,6 @@ class shlex:
self.state = ' '
self.pushback = deque()
self.lineno = 1
- self._lines_found = 0
self.debug = 0
self.token = ''
self.filestack = deque()
@@ -115,23 +114,12 @@ class shlex:
return raw
def read_token(self):
- if self._lines_found:
- self.lineno += self._lines_found
- self._lines_found = 0
-
- i = 0
quoted = False
escapedstate = ' '
while True:
- i += 1
nextchar = self.instream.read(1)
if nextchar == '\n':
- # In case newline is the first character increment lineno
- if i == 1:
- self.lineno += 1
- else:
- self._lines_found += 1
-
+ self.lineno = self.lineno + 1
if self.debug >= 3:
print("shlex: in state", repr(self.state), \
"I see character:", repr(nextchar))
@@ -151,7 +139,6 @@ class shlex:
continue
elif nextchar in self.commenters:
self.instream.readline()
- # Not considered a token so incrementing lineno directly
self.lineno = self.lineno + 1
elif self.posix and nextchar in self.escape:
escapedstate = 'a'
@@ -219,7 +206,6 @@ class shlex:
continue
elif nextchar in self.commenters:
self.instream.readline()
- # Not considered a token so incrementing lineno directly
self.lineno = self.lineno + 1
if self.posix:
self.state = ' '