Question #160893 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/160893
RaiMan posted a new comment: had a look at jython 2.5.2: gc is not implemented, because Jython uses Java garbage collection. The Python gc functions are only stubs, that throw a "not implemented exception" if used. So consequently, no gc class constants are implemented. The only useable function is collect(), which runs the Java garbage collector via System.gc() (a comment says "expensive"). So no support from module gc for your requirement. -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli. _______________________________________________ Mailing list: https://launchpad.net/~sikuli-driver Post to : [email protected] Unsubscribe : https://launchpad.net/~sikuli-driver More help : https://help.launchpad.net/ListHelp

