mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Remove superfluous semicolons
This commit is contained in:
parent
f07aad171a
commit
49d27c82e6
3 changed files with 8 additions and 8 deletions
12
Lib/shlex.py
12
Lib/shlex.py
|
@ -22,7 +22,7 @@ class shlex:
|
|||
self.whitespace = ' \t\r\n'
|
||||
self.quotes = '\'"'
|
||||
self.state = ' '
|
||||
self.pushback = [];
|
||||
self.pushback = []
|
||||
self.lineno = 1
|
||||
self.debug = 0
|
||||
self.token = ''
|
||||
|
@ -36,7 +36,7 @@ class shlex:
|
|||
"Push a token onto the stack popped by the get_token method"
|
||||
if self.debug >= 1:
|
||||
print "shlex: pushing token " + `tok`
|
||||
self.pushback = [tok] + self.pushback;
|
||||
self.pushback = [tok] + self.pushback
|
||||
|
||||
def get_token(self):
|
||||
"Get a token from the input stream (or from stack if it's nonempty)"
|
||||
|
@ -83,18 +83,18 @@ class shlex:
|
|||
"Read a token from the input stream (no pushback or inclusions)"
|
||||
tok = ''
|
||||
while 1:
|
||||
nextchar = self.instream.read(1);
|
||||
nextchar = self.instream.read(1)
|
||||
if nextchar == '\n':
|
||||
self.lineno = self.lineno + 1
|
||||
if self.debug >= 3:
|
||||
print "shlex: in state", repr(self.state), \
|
||||
"I see character:", repr(nextchar)
|
||||
if self.state is None:
|
||||
self.token = ''; # past end of file
|
||||
self.token = '' # past end of file
|
||||
break
|
||||
elif self.state == ' ':
|
||||
if not nextchar:
|
||||
self.state = None; # end of file
|
||||
self.state = None # end of file
|
||||
break
|
||||
elif nextchar in self.whitespace:
|
||||
if self.debug >= 2:
|
||||
|
@ -125,7 +125,7 @@ class shlex:
|
|||
break
|
||||
elif self.state == 'a':
|
||||
if not nextchar:
|
||||
self.state = None; # end of file
|
||||
self.state = None # end of file
|
||||
break
|
||||
elif nextchar in self.whitespace:
|
||||
if self.debug >= 2:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue