From 6499b33bf2d2ad38a99fb71c159f9c991768c071 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 2 Aug 2015 19:05:04 -0400 Subject: Tweak the plugin docs --- coverage/data.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'coverage/data.py') diff --git a/coverage/data.py b/coverage/data.py index 56233e5..3491c3d 100644 --- a/coverage/data.py +++ b/coverage/data.py @@ -48,6 +48,10 @@ class CoverageData(object): written during "coverage run", and then accumulated during "coverage combine". + Lines, arcs, and file tracer names are stored for each source file. File + names in this API are case-sensitive, even on platforms with + case-insensitive file systems. + To read a coverage.py data file, use :meth:`.read_file`, or :meth:`.read` if you have an already-opened file. You can then access the line, arc, or file tracer data with :meth:`.lines`, :meth:`.arcs`, or @@ -78,8 +82,6 @@ class CoverageData(object): """ - # TODO: case-sensitivity in file names in these methods. - # The data file format is JSON, with these keys: # # * lines: a dict mapping filenames to lists of line numbers -- cgit v1.2.1