Skip to content

Instantly share code, notes, and snippets.

@chrisledet
Created March 21, 2018 23:54
Show Gist options
  • Save chrisledet/2ca53888c07c5e770ad38b5b54379298 to your computer and use it in GitHub Desktop.
Save chrisledet/2ca53888c07c5e770ad38b5b54379298 to your computer and use it in GitHub Desktop.
1. Python code compiles to bytecode which can not run concurrently
2. GIL protects:, reference count updates, mutable types, some internal bookkeeping
3. Can't use threads
4. Python instructions are not interruptible
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment