This is like Interface in Go (or Java, i don’t speak Java but the article say so).

  • @[email protected]OP
    link
    fedilink
    110 months ago

    From what i understand, Protocol is for custom interfaces that you define (this object must have do_x() method), while ABCs are generic (this object is iterable).

      • @[email protected]OP
        link
        fedilink
        110 months ago

        The difference is that with Protocol you can define which method presence you want to ensure. Like i said: custom vs. generic.