Stackless Python is an experimental implementation of the Python language; Stackless was designed from the start to overcome the limitations of cPython's Global Interpreter Lock by using tasklets, which implement functions as microthreads.
So I just finished watching this talk on the Python Global Interpreter Lock (GIL) http://blip.tv/file/2232410. The gist …
python multithreading multicore gil python-stacklessI am looking for an easy-to-learn Actor library or framework for Python 2.x. I have tried Candygram and Twisted but …
python erlang actor python-stacklessI've been reading recently about Stackless Python and it seems to have many advantages compared with vanilla cPython. It has …
python python-stacklessWe're using Twisted extensively for apps requiring a great deal of asynchronous io. There are some cases where stuff is …
python gevent pypy eventlet python-stacklessI am planning to implement a small-scale data acquisition system on an RTOS platform. (Either on a QNX or an …
python rtos python-stackless qnxI am building a web application that has a real-time feed (similar to Facebook's newsfeed) that I want to update …
python cometd python-stacklessI've been experimenting with embedding different scripting languages in a C++ application, currently I'm trying Stackless Python 3.1. I've tried several …
c++ python scripting python-stackless cross-languagePython's pickle (I'm talking standard Python 2.5/2.6/2.7 here) cannot pickle locks, file objects etc. It also cannot pickle generators and lambda …
python generator pickle python-stacklessI'm making a program for running simulations in Python, with a wxPython interface. In the program, you can create a …
python multithreading multiprocessing multicore python-stacklessSo, I'm toying around with Stackless Python and a question popped up in my head, maybe this is "assumed" or "…
python multithreading concurrency multicore python-stackless