aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-06-25 03:52:03 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-06-25 03:52:03 +0300
commit9f2ba1c91526e84eb24a38128f8c71d628d1091e (patch)
treeb0dcc199af4142122701b108c8359af7f17dd53b
parentREADME update (diff)
downloadsorting-algorithms-9f2ba1c91526e84eb24a38128f8c71d628d1091e.tar.gz
sorting-algorithms-9f2ba1c91526e84eb24a38128f8c71d628d1091e.zip
sort algorithms in usage messages
Diffstat (limited to '')
-rw-r--r--plot.py3
-rw-r--r--test.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/plot.py b/plot.py
index 45140f6..2681628 100644
--- a/plot.py
+++ b/plot.py
@@ -51,7 +51,8 @@ def _format_algorithm(codename):
def _format_available_algorithms():
descr = 'available algorithms (in the CODENAME: DISPLAY_NAME format):\n'
- return descr + '\n'.join(map(_format_algorithm, registry.get_codenames()))
+ return descr + '\n'.join(map(
+ _format_algorithm, sorted(registry.get_codenames())))
def _format_description():
return _format_available_algorithms()
diff --git a/test.py b/test.py
index 6e5379c..0341bf3 100644
--- a/test.py
+++ b/test.py
@@ -38,7 +38,8 @@ def _format_algorithm(codename):
def _format_available_algorithms():
descr = 'available algorithms (in the CODENAME: DISPLAY_NAME format):\n'
- return descr + '\n'.join(map(_format_algorithm, registry.get_codenames()))
+ return descr + '\n'.join(map(
+ _format_algorithm, sorted(registry.get_codenames())))
def _format_description():
return _format_available_algorithms()