[code.view]

[top] / python / PyMOTW / gc / gc_debug_stats.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2010 Doug Hellmann.  All rights reserved.
     #
     """Tuning the garbage collector threshold.
     """
     #end_pymotw_header
     
     import gc
     
     gc.set_debug(gc.DEBUG_STATS)
     
     gc.collect()
     

[top] / python / PyMOTW / gc / gc_debug_stats.py

contact | logmethods.com