jarvisteach / appJar

Simple Tkinter GUIs in Python
http://appJar.info
Other
613 stars 68 forks source link

Improve appjar efficiency #273

Open jarvisteach opened 7 years ago

jarvisteach commented 7 years ago

A bunch of work needs to be done to analyse and clean up memory usage in appJar.

I'm sure there are lots of things that could be changed to reduce memory usage, as well as ensuring GC runs correctly #271

Things could also be sped up.

See here: http://effbot.org/pyfaq/how-does-python-manage-memory.htm And here: https://docs.python.org/3/library/gc.html

jarvisteach commented 7 years ago

Some things to investigate:

jarvisteach commented 7 years ago

Will replace all string concatenation with the old style formatter: "%s blah blah %s" % (1, 2)