diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-01-19 22:38:37 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@python.org> | 2020-01-19 22:38:37 (GMT) |
commit | d8ef64422a75f40cecdb1a7ee43492607d3daaf6 (patch) | |
tree | 9981ce7a082cfe86a4b85f3c98346da34e04bee9 /Misc/valgrind-python.supp | |
parent | 558f07891170fe5173f277d3749e92d844de0a27 (diff) | |
download | cpython-d8ef64422a75f40cecdb1a7ee43492607d3daaf6.zip cpython-d8ef64422a75f40cecdb1a7ee43492607d3daaf6.tar.gz cpython-d8ef64422a75f40cecdb1a7ee43492607d3daaf6.tar.bz2 |
bpo-35561: Supress valgrind false alarm on epoll_ctl(event) (GH-18060)
Update Misc/valgrind-python.supp to suppress the false alarm.
Diffstat (limited to 'Misc/valgrind-python.supp')
-rw-r--r-- | Misc/valgrind-python.supp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/valgrind-python.supp b/Misc/valgrind-python.supp index 38a5ea3..c9c45ba 100644 --- a/Misc/valgrind-python.supp +++ b/Misc/valgrind-python.supp @@ -264,6 +264,14 @@ } { + Uninitialised byte(s) false alarm, see bpo-35561 + Memcheck:Param + epoll_ctl(event) + fun:epoll_ctl + fun:pyepoll_internal_ctl +} + +{ ZLIB problems, see test_gzip Memcheck:Cond obj:/lib/libz.so.1.2.3 |