summaryrefslogtreecommitdiff
path: root/coverage/parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/parser.py')
-rw-r--r--coverage/parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/parser.py b/coverage/parser.py
index 497ddeb4..42b9bcad 100644
--- a/coverage/parser.py
+++ b/coverage/parser.py
@@ -224,7 +224,7 @@ class PythonParser(object):
def arcs(self):
"""Get information about the arcs available in the code.
- Returns a sorted list of line number pairs. Line numbers have been
+ Returns a list of line number pairs. Line numbers have been
normalized to the first line of multi-line statements.
"""
@@ -234,7 +234,7 @@ class PythonParser(object):
fl2 = self.first_line(l2)
if fl1 != fl2:
all_arcs.append((fl1, fl2))
- return sorted(all_arcs)
+ return all_arcs
@expensive
def exit_counts(self):