This is a discussion on Python’s forums about adding something akin to a throws keyword in python.

  • onlinepersona@programming.devOP
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 year ago

    When I used to write Java and switched to Python, this was one of the things I missed. It was always quite clear which exceptions I had to catch (or not). Just today, I ran into the issue of trying to cover the exceptions a library could throw without using except: or except Exception as e, but finally gave up and gave in to it. The linter wasn’t happy, but fuck it.

    • Fal@yiffit.net
      link
      fedilink
      English
      arrow-up
      0
      arrow-down
      1
      ·
      1 year ago

      It was always quite clear which exceptions I had to catch (or not)

      Lol. You’re literally the only one that likes checked exceptions. And, it seems you think that it actually gives you information about what exceptions to catch. It does not. Most things just catch and rethrow as a RuntimException