Tagged 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.

learn more… | top users | synonyms

62
votes
3answers
4k views

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 all those cool features like infinite recursion, microthreads, ...
19
votes
8answers
3k views

Multiprocessing or Multithreading?

I'm making a program for running simulations in Python, with a wxPython interface. In the program, you can create a simulation, and the program renders (=calculates) it for you. Rendering can be very ...
15
votes
6answers
2k 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 ...
15
votes
8answers
2k 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 ...
14
votes
3answers
5k 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 ...
14
votes
5answers
1k views

Is it possible to programmatically construct a Python stack frame and start execution at an arbitrary point in the code?

Is it possible to programmatically construct a stack (one or more stack frames) in CPython and start execution at an arbitrary code point? Imagine the following scenario: You have a workflow engine ...
13
votes
2answers
247 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 ...
13
votes
2answers
3k views

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 "common" knowledge, but I couldn't find it actually written anywhere on the stackless site. ...
11
votes
4answers
1k views

What is Erlang's secret to scalability?

Erlang is getting a reputation for being untouchable at handling a large volume of messages and requests. I haven't had time to download and try to get inside Mr. Erlang's understanding of switching ...
9
votes
3answers
2k views

Good python library for designing a mmo? Actor based design

i m trying to design a mmo game using python... I have evaluated stackless and since it is not the general python and it is a fork, i dont want to use it I am trying to chose between pysage ...
8
votes
2answers
1k 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 ...
8
votes
2answers
482 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 ...
8
votes
7answers
4k views

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 of it is that the GIL is a pretty good design for single core systems (Python ...
7
votes
2answers
785 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 ...
6
votes
1answer
176 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 ...
6
votes
2answers
1k 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 ...
6
votes
1answer
1k views

Stackless python network performance degrading over time?

So i'm toying around with stackless python, writing a very simple webserver to teach myself programming with microthreads/tasklets. But now to my problem, when I run something like "ab -n 100000 -c 50 ...
5
votes
3answers
351 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 ...
4
votes
1answer
727 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?
4
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?
4
votes
2answers
761 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 ...
3
votes
2answers
306 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
90 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 ...
3
votes
5answers
142 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. ...
3
votes
2answers
402 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 ...
3
votes
2answers
699 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 ...
3
votes
2answers
336 views

In stackless Python, can you send a channel over a channel?

I do not have stackless currently running, so I can not try this myself. import stackless ch1 = stackless.channel() ch2 = stackless.channel() ch1.send(ch2) ch3 = ch1.receive() Are ch2 and ch3 then ...
3
votes
3answers
4k views

Architecture for social multiplayer browser game (backend choice + frontend choice [flash/silverlight])

I'm thinking about developing online multiplayer social game. The shared state of the world would require something fast on the backend, so the potential solutions seem to be: fast game engine on ...
3
votes
4answers
788 views

What challenges promote the use of parallel/concurrent architectures?

I am quite excited by the possibility of using languages which have parallelism / concurrency built in, such as stackless python and erlang, and have a firm belief that we'll all have to move in that ...
2
votes
0answers
68 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 ...
2
votes
2answers
164 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 ...
2
votes
4answers
375 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 ...
2
votes
1answer
167 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
197 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
2answers
159 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 ...
2
votes
1answer
288 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). ...
2
votes
0answers
76 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 ...
2
votes
3answers
709 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 ...
2
votes
4answers
2k 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 ...
2
votes
6answers
1k views

What stackless programming languages are available?

What stackless programming languages are available? I know of Stackless Python, but are there any other languages which do not rely on a C stack that can be embedded into other applications? List of ...
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 ...
0
votes
2answers
14 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
34 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
39 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 ...
0
votes
0answers
32 views

Stackless Python 3.2 Build Failure

I'm trying to build Stackless Python 3.2 from source on Ubuntu 11.10 (amd64) and this is the error I receive: Stackless/core/cframeobject.c:266:2: warning: missing braces around initializer ...
0
votes
0answers
59 views

“No module named stackless” after Stackless Python Installation

I've installed Stackless Python from the website's .msi onto windows vista, and I can't import the stackless package. Originally I replaced an existing Python32 installation, but after encountering ...
0
votes
2answers
266 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
3answers
526 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
236 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 ...
0
votes
1answer
108 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 ...

1 2