Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c2871e commit 7cebbf3Copy full SHA for 7cebbf3
1 file changed
Lib/cmd.py
@@ -169,6 +169,10 @@ def postloop(self):
169
pass
170
171
def parseline(self, line):
172
+ """Parse the line into a command name and a string containing
173
+ the arguments. Returns a tuple containing (command, args, line).
174
+ 'command' and 'args' may be None if the line couldn't be parsed.
175
+ """
176
line = line.strip()
177
if not line:
178
return None, None, line
0 commit comments