I've followed the instructions found here: http://architects.dzone.com/articles/install-stackless-python and installed stackless. Stackless itself works, but unlike what the tutorial said I cannot import my python2.7 modules into the stackless python installation. What do I need to do to make it work?
Edit: When I try to import my old modules into stackless, for example:
>>>import pygame
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named pygame
Stackless can't find the module.
os.pathelements you're supposed to add as mentioned in the tutorial? – gertvdijk Feb 5 at 23:01