diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-07-12 01:04:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-12 01:04:54 -0400 |
commit | ea7a4bbd14a41b0e9bdde8d34c666eb35df60c4a (patch) | |
tree | a7fa8302d736f526f7aedec1f0c633ca61089dba /cmd2/utils.py | |
parent | e10afbeb6efe7dd806b04bd53eca615bca5d5ffc (diff) | |
parent | 322509957f01ee68fe00d837d118da1e50af19bb (diff) | |
download | cmd2-git-ea7a4bbd14a41b0e9bdde8d34c666eb35df60c4a.tar.gz |
Merge pull request #466 from python-cmd2/delete_cmdresult
Deleted the CmdResult helper class
Diffstat (limited to 'cmd2/utils.py')
-rw-r--r-- | cmd2/utils.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/cmd2/utils.py b/cmd2/utils.py index 11d48b78..1f08b416 100644 --- a/cmd2/utils.py +++ b/cmd2/utils.py @@ -61,22 +61,6 @@ def namedtuple_with_defaults(typename: str, field_names: Union[str, List[str]], return T -def namedtuple_with_two_defaults(typename: str, field_names: Union[str, List[str]], - default_values: collections.Iterable=('', '')): - """Wrapper around namedtuple which lets you treat the last value as optional. - - :param typename: str - type name for the Named tuple - :param field_names: List[str] or space-separated string of field names - :param default_values: (optional) 2-element tuple containing the default values for last 2 parameters in named tuple - Defaults to an empty string for both of them - :return: namedtuple type - """ - T = collections.namedtuple(typename, field_names) - # noinspection PyUnresolvedReferences - T.__new__.__defaults__ = default_values - return T - - def cast(current: Any, new: str) -> Any: """Tries to force a new value into the same type as the current when trying to set the value for a parameter. |