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.
1
vote
3answers
68 views
Python Is it possible to recreate a whole call stack?
I'm interested in experimenting with python. I know I can inspect and inject local and global variables into a frame using frame.f_locals and frame.f_globals, but I am now itching to create a full ...
0
votes
2answers
116 views
Python Handling large number of Threads?
# data is a list
Threading_list=[]
class myfunction(threading.Thread):
def __init__(self,val):
.......
.......
def run(self):
.......
.......
for i in ...
1
vote
1answer
44 views
Output missing when stderr points to file on multi-threaded stackless python script
Consider the following four lines (all identical) which produce the same number of lines from a log file:
$ zcat test-catalog.xml.gz | bin/process-catalog.py -b build -T 4 - 2>&1 | wc -l
620
$ ...
5
votes
3answers
364 views
What “kind” of Python to start with?
I want to learn python so I downloaded it from the python site and I saw 4 other kinds of pythons appear:
Python (normal)
IronPython
Jython
PyPy
Stackless Python
I can really find what the ...
3
votes
3answers
256 views
Simulating threads scheduling in java (stackless java?)
For some academic research I need to simulate several threads running on a single processor.
I want to be able to insert *call_scheduler()* calls inside my code, in which the current "thread" will ...
1
vote
0answers
88 views
stacklesssocket affects other socket based module
I have a project using Stackless Python with stacklesssocket.py. I recently decided that I wanted to add Couchbase to my project to server as my database back-end. I did this following the ...
12
votes
1answer
436 views
What is the preferred method for TCP/IP IPC in stackless Python?
Stackless python allows you to serialize a task (pickling) for later execution that need not be on the same machine:
http://www.stackless.com/wiki/Pickling
My question is does stackless python ...
0
votes
3answers
153 views
Is it possible to use stackless python 2.7.2 with pythondotnet?
Platform: Windows 7
Assume 32bit versions of both.
My current understanding is that it is NOT possible since both installation processes involve replacing the python.exe itself.
I guess the source ...
0
votes
2answers
195 views
Can not import stackless after stackless python installation
I used pycharm and eclipse+pydev, and I also installed stackless python(2.7.1) for mac os x.
when I try to import stackless, there always are tips which is "can't find such package/reference", but ...
0
votes
0answers
91 views
Stopping a microthread in Stackless Python
How do I stop a "micrthread" in stackless python? For example, I want to keep a "micrthread" running for only 0.1s, and then kill it or terminate it. How do I do it?
0
votes
0answers
241 views
How can Concurrence Framework make full use multicore?
I code a network game server by Concurrence Framework which is a framework for creating massively concurrent network applications in Normal Python or Stackless Python.
But I find that only one CPU ...
4
votes
1answer
291 views
Why PyPy 1.7 desn't implement “stackless” stack?
Default build of PyPy 1.7 with stackless included in, does not offer the ability to run with no recursion depth limit (in straight way).
Why?
Previus builds of PyPy with stackless support ...
10
votes
1answer
2k views
Stackless in PyPy and PyPy + greenlet - differences
New version of PyPy ships with integrated Stackless.
As far as I know the bundled Stackless is not the same as the origin Stackless from 2001 with continuations. So mainly it is the green threads ...
5
votes
2answers
1k views
Need suggestion about MMORPG data model design, database access and stackless python
I'm engaged in developing a turn-based casual MMORPG game server.
The low level engine(NOT written by us) which handle networking,
multi-threading, timer, inter-server communication, main game loop ...
14
votes
2answers
496 views
Why can't generators be pickled? [closed]
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 expressions (or any other anonymous code), because ...
2
votes
4answers
443 views
Segfault in the C code when using a Python tool called guppy ( heapy )
So I am using Python Stackless with heapy on two diffrent machines with the same architectures but slightly different C compilers. Heapy works perfectly fine on the first one, but I get a core dump ...
3
votes
2answers
631 views
Stackless Python - Recursion in a for loop?
I'm fairly new to programming and I've been working with Python for a few months now. I'm trying to get a concept to work with Stackless, but just can't figure out how (though I've written other test ...
3
votes
1answer
158 views
Tasklets Local Storage in Stackless Python
I'm starting with Stackless Python so it's a whole new amazing world for me.
I usually use regular threads, and they normally have Thread-local storage (TLS), which
is a very useful feature when you ...
4
votes
1answer
276 views
Stackless Python development using Python Tools for Visual Studio
Does the Python Tools for Visual Studio Beta, which includes support for CPython, allow you to develop in Stackless Python?
If so, could you expand your answers to include any of the steps necessary ...
2
votes
3answers
330 views
Is there something similar to Stackless Python available in C#?
Is there something similar to Stackless Python, i.e. a framework that supports continuations, microthreads and lightweight processes in C#? I know that C# 5 is going to support partially some of these ...
2
votes
1answer
207 views
Why Is My Stackless Executable So Much Smaller
I wrote a few games for a competition in Stackless Python and needed to create an executable. Accidentally though, I used CPython 2.6 instead of using Stackless Python 2.5 to build the executable. I ...
3
votes
5answers
161 views
Is there such a thing as working threading in python?
I wrote a beautiful multithreaded script, and when I ran it, it performed worse with 25 threads than with just direct invocation of the thread handler.
Then I discovered the global interpreter lock. ...
14
votes
3answers
3k views
Python/Erlang: What's the difference between Twisted, Stackless, Greenlet, Eventlet, Coroutines? Are they similar to Erlang processes?
My incomplete understanding is that Twisted, Stackless, Greenlet, Eventlet, Coroutines all make use of async network IO and userland threads that are very lightweight and quick to switch. But I'm not ...
2
votes
1answer
348 views
Sandboxed AND stackless python?
I need a scripting language for describing very complicated workflows.
These workflows need to be paused
whenever user input is required, and
resumed after it is given (could be
months later). ...
4
votes
1answer
1k views
What's the advantage of stack-less Python's microthread than Lua's coroutine in state machine implementation for game?
Any advantage on stack-less python implentation than Lua's coroutine?
What's the difference of them?
2
votes
1answer
100 views
In stackless python, is data sent over a channel immutable?
I have a typical producer, consumer pattern. If the producer sends an object over a channel, the producer is blocked until the consumer accepts the object. After the consumer accepts the object, the ...
0
votes
2answers
394 views
design for continuation based python web appliction framework
There are many continuation based framework for java, ruby etc but none in python. Nagare framework somewhat solves the problem but it do not use standard python and uses stackless python to solve ...
0
votes
4answers
1k views
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 tutorials and examples, what few I can find, to ...
0
votes
2answers
313 views
nagare framework on gae?
anyone using nagare framework on google app engine ?
it seems interesting, but i could not find any documentaiton on how to use it on
google app engine, as it uses stackless python.
so any chances ...
13
votes
4answers
4k views
Which Actor model library/framework for python and Erlang-like?
I am looking for a easy to learn Actor library or framework for Python 2.x
I have tried Candygram and Twisted but I did not like none of them.
I'd like something will be easy to extend to suppero ...
0
votes
1answer
177 views
Retrieving the Return Value of a Stackless Python Tasklet Bound Function?
Stackless Experts,
I have managed to create tasklets under Stackless Python (both from the Stackless and the C side).
It seems to me that in order to create a tasklet in Stackless, you bind an ...
26
votes
4answers
10k views
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 cpu bound instead and for that we spawn a pool of processes to do the work and ...
0
votes
1answer
154 views
Difficulty using stackless python, cannot write to a dict
I have simple map-reduce type algorithm, which I want to implement in python and make use of multiple cores.
I read somewhere that threads using native thread module in 2.6 dont make use of multiple ...
3
votes
2answers
740 views
Any ready solution for basic asynchronous (non-blocking) HTTP clients with Stackless Python 3.1?
UPDATE: after much laboring with Py3, including writing my own asynchronous webserver (following a presentation given by Dave Beazley), i finally dumped Python (and a huge stack of my code )-: in ...
2
votes
3answers
884 views
What are my options for doing multithreaded/concurrent programming in Python?
I'm writing a simple site spider and I've decided to take this opportunity to learn something new in concurrent programming in Python. Instead of using threads and a queue, I decided to try something ...
8
votes
2answers
760 views
blocking channels vs async message passing
I've noticed two methods to "message passing". One I've seen Erlang use and the other is from Stackless Python. From what I understand here's the difference
Erlang Style - Messages are sent and ...
22
votes
6answers
5k views
what would I use stackless python for?
There are many questions related to Stackless Python. But none answering this my question, I think (correct me if wrong - please!). There's some buzz about it all the time so I curious to know. What ...
7
votes
2answers
1k views
Which programming languages support hot code swapping and/or sandboxing?
I would like to write a web based MMO game that will allow users to write AI and run it as part of the game. I plan to use Html5 for graphics and want this to be web based so it can be accessed from ...
0
votes
1answer
209 views
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 ...
6
votes
11answers
2k views
Python vs. Java — Which would you pick to do concurrent programming and why?
Also, if not python or java, then would you more generally pick a statically-typed language or a dynamic-type language?
1
vote
2answers
992 views
how stackless python can be fast for concurrency?
stackless python didn't take a good usage of multi-core, so where is the point it should be faster than python thread/multiprocessing ?
all the benchmark use stackless python tasklet to compare with ...
0
votes
2answers
158 views
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 ...
4
votes
2answers
1k views
Stackless Python and PyQt
What experiences do you have with Stackless Python and PyQt?
Issues i would be happy if people address:
Compilation of PyQt for Stackless: does PyQt need to be compiled especially for Stackless? is ...
5
votes
3answers
482 views
Designing the storage for a very large game world
I'm starting up game programming again. 10 years ago I was making games in qbasic and I havn't done any game programming since, so I am quite rusty. I have been programming all the time though, I am ...
3
votes
5answers
4k views
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 RT-Linux system.)
As far as I know, these jobs are performed using C / C++ to get the most ...
1
vote
1answer
2k views
Django ImageField validation & PIL
On sunday, I had problems with python modules, when I installed stackless
python. Now I have compiled and installed :
setuptools & python-mysqldb and i got my django project up and running
...
3
votes
2answers
841 views
Overhead of Mono Tasklet/Co-Routines
What are the main performance overheads (gc/stack copying...) of the new Mono Continuations/Tasklet framework?
How does this overhead (coroutine performance / raw performance) compare to other ...
0
votes
1answer
566 views
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 ...
0
votes
3answers
857 views
Explain socket buffers please
I was trying to find examples about socket programming and came upon this script:
http://stacklessexamples.googlecode.com/svn/trunk/examples/networking/mud.py
When reading through this script i found ...
31
votes
7answers
14k views
Threading in Python
What's the best approach to writing multi-threaded applications in Python, I'm aware of the basic concurrency mechanisms provided by the language and also of Stackless Python. What would you ...

