summaryrefslogtreecommitdiff
path: root/cmd2/parsing.py
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-04-22 21:55:33 -0600
committerkotfu <kotfu@kotfu.net>2018-04-22 21:55:33 -0600
commit65bf06a6e9712c87802bf8c319442a8b4cb00e6f (patch)
treec1c0db0e04d8314645e73e38bb9340775583df43 /cmd2/parsing.py
parenta735180192ff900234e9c2c3ab4a7786ad7ec8d3 (diff)
downloadcmd2-git-65bf06a6e9712c87802bf8c319442a8b4cb00e6f.tar.gz
Updates to comments and todo list
Diffstat (limited to 'cmd2/parsing.py')
-rw-r--r--cmd2/parsing.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd2/parsing.py b/cmd2/parsing.py
index 79d57a32..5bb8d654 100644
--- a/cmd2/parsing.py
+++ b/cmd2/parsing.py
@@ -47,9 +47,7 @@ class CommandParser():
self.multilineCommands = multilineCommands
def parseString(self, rawinput):
- #result = Statement(rawinput)
-
- # strip C-style and C++-style comments
+ # strip C-style comments
# shlex will handle the python/shell style comments for us
def replacer(match):
s = match.group(0)