diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-02 19:05:04 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-02 19:05:04 -0400 |
commit | 6499b33bf2d2ad38a99fb71c159f9c991768c071 (patch) | |
tree | 98ca51855398d034c5f6dccfc82195d56553fd7c /coverage/data.py | |
parent | 0725b63059093ad473cc321c0cda4d1fb9f75d46 (diff) | |
download | python-coveragepy-6499b33bf2d2ad38a99fb71c159f9c991768c071.tar.gz |
Tweak the plugin docs
Diffstat (limited to 'coverage/data.py')
-rw-r--r-- | coverage/data.py | 6 |
1 files changed, 4 insertions, 2 deletions
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 |