summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 574c874..4bb6866 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -755,6 +755,7 @@ class Coverage(object):
return
def abs_file_dict(d):
+ """Return a dict like d, but with keys modified by `abs_file`."""
return dict((abs_file(k), v) for k,v in iitems(d))
# TODO: seems like this parallel structure is getting kinda old...