• @snekmuffin@lemmy.dbzer0.com
    link
    fedilink
    381 month ago

    Tbf python guidelines encourage it over if/else in cases like this. “Easier to ask for forgiveness than for permission” or something along the lines

    • @lseif
      link
      321 month ago

      pythonic != good

    • @bjornsno@lemm.ee
      link
      fedilink
      201 month ago

      Day 598 of asking for a way to tell which functions throw exceptions in Python so I can know when to wrap in try catch. Seems to me that every other language has this, but when I’ve asked for at least a linter that can tell me I’m calling a function that throws, the general answer has been “why would you want that?”

      How am I supposed to ask for forgiveness if it’s impossible to know that I’m doing something risky in the first place?

      • @ScreaminOctopus@sh.itjust.works
        link
        fedilink
        English
        71 month ago

        Yeah, for this reason I would pretty much never encourage exceptions in Python over some other form of error handling. It’s so frustrating when called code throws some random exceptions that are completely undocumented. This is one of the few things Java got (sort of) right

          • Eager Eagle
            link
            fedilink
            English
            11 month ago

            that’s still a docstring, idk of linters that take docstrings into account at all. We need a semantic approach for this kind of annotation.

            • @bjornsno@lemm.ee
              link
              fedilink
              11 month ago

              That’s way harder to ask for. A docstring solution is fine so long as the linters know to pick it up.

              • Eager Eagle
                link
                fedilink
                English
                1
                edit-2
                1 month ago

                I don’t think so. A half-measure using docstrings would likely take more processing power and require an ad-hoc implementation because comments are not broken down into ast components afaik. It would also be more costly in the long run if they decide to convert it into a proper syntax, as a result of docstrings not having a single standard way of being written.

                Python has introduced several syntactic changes for type annotations, this is not unreasonable.

      • @sqw@lemmy.sdf.org
        link
        fedilink
        English
        11 month ago

        cant practically anything throw an exception given the right (sometimes extremely remotely possible) circumstances?

        • @prof@infosec.pub
          link
          fedilink
          51 month ago

          Not really. Exceptions are a controlled way of indicating something went wrong in an application.

          The only point where you wouldn’t know about the possibility of one is when you don’t know enough about the language features you’re using or when you use a badly documented library or framework.

        • @bjornsno@lemm.ee
          link
          fedilink
          21 month ago

          Well at least php has it, which is a JITed scripting language just like Python. Although saying php has it is wrong, it’s just a special doc tag that the linters pick up. Which is exactly what I want for Python. The only other scripting language I’m very comfortable with is typescript, which can also support @throws via jsdoc and eslint.

          So to answer your question, I don’t know if it’s common, but from my minimal sample pool it’s at least not unheard of.

          You may not know this (just guessing because you commented on the nature of scripting/interpreted languages) but static analysis of dynamic languages has come really far and is an indispensable part of any reasonably sized project written in them these days. That’s another reason why I’m so surprised and frustrated by the lack of this in Python.

    • @rwhitisissle@lemmy.ml
      link
      fedilink
      91 month ago

      python guidelines

      Do you have a specific PEP you’re referencing or is this one of those “I assume this must be the case because of how common using try/except statements for flow control are” kind of things?

        • @rwhitisissle@lemmy.ml
          link
          fedilink
          11 month ago

          I think there’s a difference between “python guidelines encourage” something and “this is a common coding pattern.” Yes, you can use try/except for flow control, but there’s a lot of people, myself included, who try to use that style sparingly.

    • @NeatNit@discuss.tchncs.de
      link
      fedilink
      31 month ago

      Like most things in life, context matters. In the OP it seems like the check function is used specifically so it could raise a PaymentException if the payment hasn’t been received… That’s not a “forgiveness/permission” context, this is a yes or no question, hence should have been an if.