Giter Site home page Giter Site logo

Comments (10)

nedbat avatar nedbat commented on June 27, 2024

I changed the code parsing to ignore the branch from the except clause to the next. Fixed in <<changeset e01bfcdcc17f (bb)>>.

from coveragepy.

nedbat avatar nedbat commented on June 27, 2024

Original comment by Gary Bernhardt (Bitbucket: garybernhardt, GitHub: garybernhardt)


Here's my reasoning about it: In Python, any line could potentially throw an exception. Code within a try without a catch-all except isn't actually any different in this regard (unless I'm missing something). So if we count potentially uncaught exceptions within a try as branches, we really should count every non-trivial line of code in that way, which we clearly don't want. :)

from coveragepy.

nedbat avatar nedbat commented on June 27, 2024

Gary, there's another possibility: the bytecode for except clauses has a distinctive signature:

COMPARE_OP 10 (exception match)

But I'm also wondering whether it's right to hide the comparison being done here. And underlying all the uncertainty is the fact that no coverage theory out there seems to consider exception handling in the first place...

from coveragepy.

nedbat avatar nedbat commented on June 27, 2024

Gary, that might be what's required. In fact, it's very similar to the way I'm dealing with the "class is a branch" problem (<<issue 32>>).

from coveragepy.

nedbat avatar nedbat commented on June 27, 2024

Original comment by Gary Bernhardt (Bitbucket: garybernhardt, GitHub: garybernhardt)


I spent some more time trying to fix it, but it looks quite hard because it mixes levels in a way that coverage doesn't have to deal with currently. The generic except check is done by comparing the name of the thrown exception to each of the named except: blocks (LOAD_NAME/COMPARE_OP/JUMP_IF_FALSE). I tried to put in a horrible hack where I cross-referenced the line number of the current byte code against the original text of the code, and avoided adding it as an exit point if I was at the except: line. But then I started getting a headache and gave up. :(

This probably isn't useful to you, given the amount of time you've spent with this stuff, but I thought I'd share. :) Thanks for all of the work you've done so far; I use coverage hundreds of times in an average day.

from coveragepy.

nedbat avatar nedbat commented on June 27, 2024

Gary, I admire your fortitude attempting to add that test! The check_coverage method won't even attempt branch measurement if the arcz argument is omitted.

from coveragepy.

nedbat avatar nedbat commented on June 27, 2024

Original comment by Gary Bernhardt (Bitbucket: garybernhardt, GitHub: garybernhardt)


That explanation makes sense, although I still don't understand why my test passed. It seems like the third invisible branch should've been in arcz_missing. :)

from coveragepy.

nedbat avatar nedbat commented on June 27, 2024

Unfortunately, an except clause with a type is actually a three-way branch. The case you are missing is a non-IndexError exception. But I agree that this is very counterintuitive and probably needs to be fixed. A few details are at http://nedbatchelder.com/code/coverage/branches_html/branches.html

from coveragepy.

nedbat avatar nedbat commented on June 27, 2024

Original comment by Gary Bernhardt (Bitbucket: garybernhardt, GitHub: garybernhardt)


I started trying to figure this out, but became quite confused when the following test passed without making changes to coverage:

#!python

    def test_try_except_when_both_are_executed(self):
        self.check_coverage("""\
            a = []
            def foo(a_list):
                try:
                    a_list[0]
                    a.append('first')
                except IndexError:
                    a.append('second')
            foo([0])
            foo([])
            assert a == ['first', 'second']
            """,
            arcz_missing="")

It seems like the transitions are being recorded at a lower level, but the high-level reporter doesn't report that.

from coveragepy.

nedbat avatar nedbat commented on June 27, 2024

Original comment by Gary Bernhardt (Bitbucket: garybernhardt, GitHub: garybernhardt)


Let's try that again...

#!python

def foo(a_list):
    try:
        a_list[0]
    except IndexError:
        pass
    foo([])
    foo([0])

from coveragepy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.