Tagged Questions
Stackless refers to a code implementation that does not use a call stack. Haskell is an example of a stackless language
61
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, ...
20
votes
7answers
10k views
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 via a long-polling mechanism. I understand that with Python, my choices are pretty much ...
19
votes
9answers
533 views
Has the use of C to implement other languages constrained their designs in any way?
It seems that most new programming languages that have appeared in the last 20 years have been written in C. This makes complete sense as C can be seen as a sort of portable assembly language. But ...
19
votes
8answers
2k views
How does a stackless language work?
I've heard of stackless languages. However I don't have any idea how such a language would be implemented. Can someone explain?
14
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 ...
13
votes
2answers
328 views
Is it possible to embed PyPy into a .NET application?
I would like to embed a Python interpreter into my .NET application. I'm aware of IronPython, of course, but I'm specifically interested in PyPy, because of its stackless support and microthreads.
...
13
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 ...
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
475 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 ...
7
votes
2answers
216 views
Haskell implemented without a stack?
from How does a stackless language work?
Haskell (as commonly implemented) does not have a call stack;
evaluation is based on graph reduction.
Really? That's interesting, because while I've never ...
7
votes
2answers
763 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 ...
7
votes
2answers
404 views
What C-integration problems arise with stackless VM implementations?
By stackless VM I mean implementation which maintains its own stack on the heap instead of using system "C-stack". This has a lot of advantages like continuations and serializable state, but also has ...
7
votes
3answers
806 views
What does it really mean that a programming language is stackless?
According to this answer
http://stackoverflow.com/questions/551950/what-stackless-programming-languages-are-available/671296#671296
all of these programming languages are stackless
Stackless ...
4
votes
5answers
481 views
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 seem to have network ...
4
votes
1answer
697 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
2answers
742 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
119 views
How to track memory for a python script
We have a system that only has one interpreter. Many user scripts come through this interpreter. We want put a cap on each script's memory usage. There is only process, and that process invokes ...
3
votes
2answers
292 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
84 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
2answers
392 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
331 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 ...
2
votes
0answers
49 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
1answer
159 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
183 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
149 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
0answers
72 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
1answer
125 views
Mailboxes with Stackless
In my stackless application I'd like to have Erlang style message box queues. Instead of mandating that sending tasklets are blocked until the receiving tasklet is ready to receive, I'd like to have ...
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 ...
2
votes
4answers
781 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 ...
1
vote
1answer
54 views
Stackless Python - profile single tasklet execution time
In my server written in Stackless Python, I occasionally am getting large spikes in CPU usage for 5-10 seconds durations. This happens sporadically so I'm having trouble tracking it down.
I've ...
1
vote
1answer
295 views
What's BLUE from CCP Stackless presentations?
In Stackless Python in Eve, there is some talk about "BLUE" objects in Python.
Does anyone know details about this technology?
1
vote
2answers
163 views
Fastest way to produce UDP packets
We're building a test harness to push binary messages out on a UDP multicast.
The prototype is using the Twisted reactor loop to push out messages, which is achieving just about the level of traffic ...
1
vote
1answer
98 views
How do you implement a stackless language on top of the CLR?
How do you implement a stackless language on top of the CLR? What are some issues with implementing a stackless language on top of a stackful virtual machine, and are there any OSS projects out there ...
0
votes
0answers
51 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
1answer
103 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 ...
0
votes
1answer
116 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 ...
0
votes
2answers
706 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
1answer
471 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
712 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 ...
0
votes
2answers
755 views
Stackless installation and configuration with DJango
I am trying to run a DJango Command Extension which uses stackless.
I have installed Stackless Python (compiled with python 2.5) so whenever I type python2.5 at the console it fires up indicating ...