diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-18 18:04:18 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-18 18:04:18 -0400 |
commit | 8021196662dcadf161cbeaebb3be4b0392b51803 (patch) | |
tree | d8400d8e89e4998b5fd181696ab9675c89b397ff /coverage/ctracer/stats.h | |
parent | 50a0e37ad2e7a5ec655a797f0688f616c8b1a56f (diff) | |
download | python-coveragepy-git-8021196662dcadf161cbeaebb3be4b0392b51803.tar.gz |
refactor: no need for specialized pyexpat code anymore
The pyexpat bug that plagued us was fixed in Python 3.4:
https://bugs.python.org/issue22462
We no longer need the code that adapted to it. The test will remain, couldn't
hurt.
Diffstat (limited to 'coverage/ctracer/stats.h')
-rw-r--r-- | coverage/ctracer/stats.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/coverage/ctracer/stats.h b/coverage/ctracer/stats.h index 05173369..75e5cc74 100644 --- a/coverage/ctracer/stats.h +++ b/coverage/ctracer/stats.h @@ -17,10 +17,8 @@ typedef struct Stats { #if COLLECT_STATS unsigned int lines; unsigned int returns; - unsigned int exceptions; unsigned int others; unsigned int files; - unsigned int missed_returns; unsigned int stack_reallocs; unsigned int errors; unsigned int pycalls; |