diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-03-04 22:11:48 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-03-04 22:11:48 -0500 |
commit | c628722774b3b302e918ed451815269412519448 (patch) | |
tree | 78ff426464a52badabc6f6f882156c13f5cd53c9 /cmd2/constants.py | |
parent | 73496248ba76cc58512142be3973a214ae9336f8 (diff) | |
parent | eb86c739187583a7afdd56e0a9fcf0da212562f1 (diff) | |
download | cmd2-git-c628722774b3b302e918ed451815269412519448.tar.gz |
Merged master into history and resolved conflicts
Diffstat (limited to 'cmd2/constants.py')
-rw-r--r-- | cmd2/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd2/constants.py b/cmd2/constants.py index 39115493..854862c5 100644 --- a/cmd2/constants.py +++ b/cmd2/constants.py @@ -12,6 +12,7 @@ REDIRECTION_OUTPUT = '>' REDIRECTION_APPEND = '>>' REDIRECTION_CHARS = [REDIRECTION_PIPE, REDIRECTION_OUTPUT] REDIRECTION_TOKENS = [REDIRECTION_PIPE, REDIRECTION_OUTPUT, REDIRECTION_APPEND] +COMMENT_CHAR = '#' MULTILINE_TERMINATOR = ';' # Regular expression to match ANSI escape codes |