Questions tagged [python-stackless]

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.

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.

From the Stackless Python web site:

Stackless Python is an enhanced version of the Python programming language. It allows programmers to reap the benefits of thread-based programming without the performance and complexity problems associated with conventional threads. The microthreads that Stackless adds to Python are a cheap and lightweight convenience which can if used properly, give the following benefits:

  • Improved program structure.
  • More readable code.
  • Increased programmer productivity.
80 questions
0
votes
1 answer

mod_python is not loading stackless Python

I have setup an Apache2 mod_python environment with stackless Python and it is working. And When I test the Python environment with sys.version, it shows 2.5.2 Stackless 3.1b3 060516 (python-2.52:76701, Dec 8 2009, 02:13:34) [GCC 4.2.4 (Ubuntu…
Devasia Joseph
  • 388
  • 4
  • 14
0
votes
2 answers

Install Stackless without uninstalling Python

It seems like on Windows I have to uninstall Python before installing stackless (http://stackless.com/wiki/Download). I have Python 2.7 installed, a solution may be installing Stackless Python 3.2, but I will have to switch between Python 2 and 3…
cdonts
  • 9,304
  • 4
  • 46
  • 72
0
votes
2 answers

MySQL driver issues with INFORMATION_SCHEMA?

I'm trying out the Concurrence framework for Stackless Python. It includes a MySQL driver and when running some code that previously ran fine with MySQLdb it fails. What I am doing: Connecting to the MySQL database using dbapi with…
mthurlin
  • 26,247
  • 4
  • 39
  • 46
0
votes
1 answer

Implementing Stackless Python

I really admire the functionality of Stackless Python, and I've been looking around for a way to emulate its syntax while still using the standard Python 3 interpreter. An article by Alex J. Champandard in a gamedev blog made it look as though the…
Humble Penguin
  • 323
  • 1
  • 3
  • 9
0
votes
1 answer

Stackless python stopped mod_python/apache from working

I installed stackless pyton 2.6.2 after reading several sites that said its fully compatible with vanilla python. After installing i found that my django applications do not work any more. I did reinstall django (1.1) again and now im kind of lost.…
Odif Yltsaeb
  • 5,575
  • 12
  • 49
  • 80
1 2 3 4 5
6