Re: [Tutor] global interpreter lock

2016-09-15 Thread khalil zakaria Zemmoura
Basically, what that said is the global interpreter lock is something that allows only one thread at a time to be executed when you launch a python program in opposition of executing multiple threads at the same time (parallelism). when you launch a python program it create a process in memory. bec

Re: [Tutor] global interpreter lock

2016-09-15 Thread Joaquin Alzola
> Can someone explain global interpreter lock with some source code examples? Watch this youtube video. Gilectomy https://www.youtube.com/watch?v=fgWUwQVoLHo -- Joaquin This email is confidential and may be subject to privilege. If you are not the intended recipient, please do not copy or dis

[Tutor] global interpreter lock

2016-09-15 Thread anish singh
Can someone explain global interpreter lock with some source code examples? I didn't understand explanation offered here: https://docs.python.org/3/glossary.html#term-global-interpreter-lock ___ Tutor maillist - Tutor@python.org To unsubscribe or chang