Structural Pattern Matching in the Real World - Raymond Hettinger

Поделиться
HTML-код
  • Опубликовано: 22 июл 2022
  • Structural Pattern Matching in the Real World - PyCon Italia 2022
    Speaker: Raymond Hettinger
  • РазвлеченияРазвлечения

Комментарии • 6

  • @alexanderscott2456
    @alexanderscott2456 Год назад +10

    Been waiting for this for months! Every RH talk is worth its bits in gold.

  • @athalean
    @athalean Год назад +4

    Is the intro talk he mentions at the beginning also available online?

  • @andrewmartin3671
    @andrewmartin3671 Год назад +1

    Are the slides published, I'd like to copy/paste that regex example into a doc.

  • @versacebroccoli7238
    @versacebroccoli7238 10 месяцев назад

    I've been trying to find these slides for like a year. The resolution of this video is just not readable to me. I really wish it was documented better where to find the slides.
    Edit: Raymond posted a Dropbox link on Twitter but it's pretty hard to access without an account. I had to use a nitter clone.

    • @kamilkugler1044
      @kamilkugler1044 10 месяцев назад

      can you share this Dropbox link or steps on how you have obtained these docs please ?

  • @sadhlife
    @sadhlife 2 года назад

    The FuncCall descriptor example is neat, but I'm just thinking of a syntax/convention for a function call which can take something other than a single string as input.
    Multiple strings/varnames can maybe be done with two underscores between them? like so:
    ```
    match x:
    case foo.a__b__c:
    print("foo got called with 'a', 'b', 'c'")
    ```