Python: some advance topics

Links

Async-Await

GIL and concurrency

The Python interpreter is not fully thread-safe, in order to support multithreading there is a “global lock” in CPython. Other implementations doesn’t have GIL, such Jython, IronPython. Cython has GIL but it can be released by a “with” statement.

Conventions:

other topics

Floating Point issues

comments powered by Disqus