Sort package lists when searching or showing objects

Fixes #135
Fixes #214
This commit is contained in:
Andrey Smirnov
2017-05-04 23:47:05 +03:00
parent 33357c1fe4
commit 589dc93380
58 changed files with 640807 additions and 640872 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ def run(include_long_tests=False, capture_results=False, tests=None, filters=Non
print "\nFAILURES (%d):" % (len(fails), )
for (test, t, typ, val, tb, testModule) in fails:
print "%s:%s %s" % (test, t.__class__.__name__, getattr(testModule, "__doc__", "").strip() + ": " + t.__doc__.strip())
print "%s:%s %s" % (test, t.__class__.__name__, testModule.__name__ + ": " + t.__doc__.strip())
traceback.print_exception(typ, val, tb)
print "=" * 60