Python Threading Tutorial: Basic to Advanced (Multithreading, Pool Executors, Daemon, Lock, Events)

Поделиться
HTML-код
  • Опубликовано: 5 ноя 2024

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

  • @kevinwoodrobotics
    @kevinwoodrobotics  2 дня назад +1

    Code: kevinwoodrobotics.com/product/python-threading-tutorial-basic-to-advanced-multithreading-pool-executors-daemon-lock-queue-events/

  • @MinaEllis-d2n
    @MinaEllis-d2n 12 часов назад

    Thank you for continuously providing us with new knowledge. Your channel is a huge blessing to me. Keep up the good work.

  • @GeraldTalton
    @GeraldTalton День назад +1

    So what version of Python has the GIL fix in it to allow for true multithreading in Python?

    • @kevinwoodrobotics
      @kevinwoodrobotics  День назад +1

      3.13

    • @eduferreyraok
      @eduferreyraok 21 час назад

      Starting from python 3.13 released last month, you get to use multithreading by unlocking the GIL, by default it is still locked so it’s necessary to unlock the GIL first before running the interpreter. I still don’t know how to unlock the GIL, any chances to shows us @kevinwoodrobotics