diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-04-23 00:07:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-23 00:07:29 -0400 |
commit | 86c0df91bddf636178a95838145c46b6c9cc71a8 (patch) | |
tree | 6de53ed49b42e60d4ea0c516b94106086a614981 /cmd2/constants.py | |
parent | 6bfc6456dce9c2e87c24d0d3ba833323623b63bf (diff) | |
parent | 0ad71461348fa35021eca663eda88b18ab2563cb (diff) | |
download | cmd2-git-86c0df91bddf636178a95838145c46b6c9cc71a8.tar.gz |
Merge pull request #916 from python-cmd2/table_creator
Initial commit of table creation API
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 d7e52cc9..81d1a29b 100644 --- a/cmd2/constants.py +++ b/cmd2/constants.py @@ -5,6 +5,7 @@ # Unless documented in https://cmd2.readthedocs.io/en/latest/api/index.html # nothing here should be considered part of the public API of this module +INFINITY = float('inf') # Used for command parsing, output redirection, tab completion and word # breaks. Do not change. |