Have you ever wondering what is in the gabarge collector ? This little piece of code may help :) import string,gc def debugGC(threshold=10): d = {} print “*” * 80 for o in gc.get_objects(): try: s = str(o.__class__) try: d[s] … Continue reading →
tag: memory, Python
Différentes initiatives commencent à naitre sur les IDE python. Un relativement récente consiste à utiliser eclipse, l’IDE java. http://www.xored.com/products.php L’installation du plugin se fait directement via eclipse via Window -> Open Perspective -> Other resource -> Install or Update. Puis … Continue reading →
tag: eclipse, ide, Python