python-stackless
Segfault in the C code when using a Python tool called guppy ( heapy )
So I am using Python Stackless withheapy 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 on[详细]
2023-03-22 14:12 分类:问答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 s开发者_StackOverflow中文版torage (TLS), which[详细]
2023-03-10 00:54 分类:问答Erlang-like concurrency for Python?
开发者_高级运维Is there anything for Python that has concurrency like Erlang does, particulary transparent actors over networks? I\'ve looked at things like greenlet and stackless, but they don\'t see[详细]
2023-02-21 05:03 分类:问答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 an开发者_JAVA技巧d lightweight processes in C#? I know that C# 5 is going to support partiall[详细]
2023-02-18 20:15 分类:问答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 r[详细]
2023-02-17 22:08 分类:问答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[详细]
2023-01-26 09:32 分类:问答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 implen开发者_JAVA百科tation than Lua\'s coroutine? What\'s the difference of them?stackless python and tasklets (I haven\'t done any programming with stackless pytho[详细]
2023-01-23 09:26 分类:问答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 p[详细]
2023-01-22 16:13 分类:问答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 con[详细]
2023-01-17 03:23 分类:问答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[详细]
2023-01-10 19:13 分类:问答