diff --git a/python-argh.changes b/python-argh.changes index 115e518..f7ea437 100644 --- a/python-argh.changes +++ b/python-argh.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Dec 5 01:53:34 UTC 2018 - Jan Engelhardt + +- Trim rhetorics from descriptions. + ------------------------------------------------------------------- Tue Dec 4 12:45:39 UTC 2018 - Matej Cepl diff --git a/python-argh.spec b/python-argh.spec index 90359fc..ae5a028 100644 --- a/python-argh.spec +++ b/python-argh.spec @@ -22,7 +22,7 @@ Name: python-argh Version: 0.26.1 Release: 0 -Summary: A simple argparse wrapper +Summary: An argparse wrapper License: LGPL-3.0-or-later Group: Development/Languages/Python Url: https://github.com/neithere/argh/ @@ -42,18 +42,14 @@ BuildArch: noarch %python_subpackages %description -Agrh, argparse! +This Python module provides a wrapper for argparse with support for hierarchical +commands that can be bound to modules or classes. -Did you ever say "argh" trying to remember the details of optparse or argparse -API? If yes, this package may be useful for you. It provides a very simple -wrapper for argparse with support for hierarchical commands that can be bound -to modules or classes. Argparse can do it; argh makes it easy. - -Here's a list of features that argh adds to argparse: +Features that argh adds to argparse: * mark a function as a CLI command and specify its arguments before the parser is instantiated; -* nesed commands made easy: no messing with subparsers (though they are of +* nested commands made easy: no messing with subparsers (though they are of course used under the hood); * infer agrument type from the default value; * infer command name from function name; @@ -61,8 +57,8 @@ Here's a list of features that argh adds to argparse: * enable passing unwrapped arguments to certain functions instead of a argparse.Namespace object. -Argh is fully compatible with argparse. You can mix argh-agnostic and -argh-aware code. Just keep in mind that argh.dispatch does some extra +Argh is fully compatible with argparse. argh-agnostic and argh-aware code +can be mixed. Keep in mind that argh.dispatch does some extra work that a custom dispatcher may not do. %prep