Top "Python-stackless" questions

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.

Python Global Interpreter Lock (GIL) workaround on multi-core systems using taskset on Linux?

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-stackless
Which Actor model library/framework for python and Erlang-like?

I 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-stackless
What are the drawbacks of Stackless Python?

I've been reading recently about Stackless Python and it seems to have many advantages compared with vanilla cPython. It has …

python python-stackless
Eventlet or gevent or Stackless + Twisted, Pylons, Django and SQL Alchemy

We'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-stackless
Python on an Real-Time Operation System (RTOS)

I am planning to implement a small-scale data acquisition system on an RTOS platform. (Either on a QNX or an …

python rtos python-stackless qnx
Python Comet Server

I am building a web application that has a real-time feed (similar to Facebook's newsfeed) that I want to update …

python cometd python-stackless
Why does the Python/C API crash on PyRun_SimpleFile?

I'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-language
Why can't generators be pickled?

Python'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-stackless
Multiprocessing or Multithreading?

I'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-stackless
Stackless python and multicores?

So, 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