https://github.com/python/cpython
Revision 3f5bcc86d0764b691087e8412941e947554c93fd authored by Tony Mountifield on 04 April 2024, 10:32:53 UTC, committed by GitHub on 04 April 2024, 10:32:53 UTC
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent dc54714
Raw File
Tip revision: 3f5bcc86d0764b691087e8412941e947554c93fd authored by Tony Mountifield on 04 April 2024, 10:32:53 UTC
gh-117467: Add preserving of mailbox owner on flush (GH-117510)
Tip revision: 3f5bcc8
.coveragerc
[run]
branch = True

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # Don't complain if non-runnable code isn't run:
    if 0:
    if __name__ == .__main__.:
    raise AssertionError\(

    # Empty bodies in protocols or abstract methods
    ^\s*def [a-zA-Z0-9_]+\(.*\)(\s*->.*)?:\s*\.\.\.(\s*#.*)?$
    ^\s*\.\.\.(\s*#.*)?$

    .*# pragma: no cover
    .*# pragma: no branch

    # Additions for IDLE:
    .*# htest #
    if not (_htest or _utest):
    if not .*_utest:
    if .*_htest:
    
back to top