Hong-Phuc Bui
2026-07-06 a45bdced8968f14a0f70c3adb15030d4682c0b04
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
SQLite format 3@     .v‰ V X^ - g ñ œ 8  U i,   .XQ ‚}tabletracertracer CREATE TABLE tracer (
    -- A row per file indicating the tracer used for that file.
    file_id integer primary key,
    tracer text,
    foreign key (file_id) references file (id)
)ƒ
‡etablearcarc CREATE TABLE arc (
    -- If recording branches, a row per context per from/to line transition executed.
    file_id integer,            -- foreign key to `file`.
    context_id integer,         -- foreign key to `context`.
    fromno integer,             -- line number jumped from.
    tono integer,               -- line number jumped to.
    foreign key (file_id) references file (id),
    foreign key (context_id) references context (id),
    unique (file_id, context_id, fromno, tono)
)% 9indexsqlite_autoindex_arc_1arc „‡qtableline_bitsline_bits   CREATE TABLE line_bits (
    -- If recording lines, a row per context per file executed.
    -- All of the line numbers for that file/context are in one numbits.
    file_id integer,            -- foreign key to `file`.
    context_id integer,         -- foreign key to `context`.
    numbits blob,               -- see the numbits functions in coverage.numbits
    foreign key (file_id) references file (id),
    foreign key (context_id) references context (id),
    unique (file_id, context_id)
)1  Eindexsqlite_autoindex_line_bits_1line_bits
‚   tablecontextcontextCREATE TABLE context (
    -- A row per context measured.
    id integer primary key,
    context text,
    unique (context)
)-Aindexsqlite_autoindex_context_1contextqtablefilefileCREATE TABLE file (
    -- A row per file measured.
    id integer primary key,
    path text,
    unique (path)
)';indexsqlite_autoindex_file_1file„ˆtablemetametaCREATE TABLE meta (
    -- Key-value pairs, to record metadata about the data
    key text,
    value text,
    unique (key)
    -- Possible keys:
    --  'has_arcs' boolean      -- Is this data recording branches?
    --  'sys_argv' text         -- The coverage command line that recorded the data.
    --  'version' text          -- The version of coverage.py that made the file.
    --  'when' text             -- Datetime when the file was created.
    --  'hash' text             -- Hash of the data.
)';indexsqlite_autoindex_meta_1meta++utablecoverage_schemacoverage_schemaCREATE TABLE coverage_schema (
    -- One row, to record the version of the schema in this db.
    version integer
) ûû àîà has_arcs0version7.14.3
èèõ has_arcs
  version 9š9_C/home/hbui/Documents/htw/python-master-2026/beispiel-programm/05-oop-polynome/polynomial.pydM/home/hbui/Documents/htw/python-master-2026/beispiel-programm/05-oop-polynome/test_polynomial.py
::›`C/home/hbui/Documents/htw/python-master-2026/beispiel-programm/05-oop-polynome/polynomial.pydM  /home/hbui/Documents/htw/python-master-2026/beispiel-programm/05-oop-polynome/test_polynomial.py ûû
üü    åôå         êïù¾ù÷}Å
 ú¢Äïº
ôôú