Python/Threading: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

12 November 2022

  • curprev 23:1923:19, 12 November 2022Kenneth talk contribs 277 bytes +277 Created page with "== Python 3 == <pre> import _thread def mythread(param1, param2): pass _thread.start_new_thread( mythread, ("Param1", "Param2", ) ) _thread.start_new_thread( mythread, ("..."