UnknowFenomenw Ciekawostki2021-04-11T18:28:02+02:006Programowanie równoległe (concurrent programming) w Pythonie jest skomplikowane? niekoniecznie! http://pljung.de/posts/easy-concurrency-in-python/ Easy Concurrency in Python - Philipps BlogBad news first. Python is a poor choice for concurrent programming. A principal reason for this is the 'Global Interpreter Lock' or GIL. The GIL ensures that only one thread accesses Python objects at a time, effectively preventing Python from being able to distribute threads onto several CPUs by default.Easy Concurrency in Python - Philipps Blog60Udostępnij