[pypy-commit] extradoc extradoc: merged upstream

alex_gaynor noreply at buildbot.pypy.org
Sat Feb 4 21:40:44 CET 2012


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: extradoc
Changeset: r4080:257cc228351a
Date: 2012-02-04 15:40 -0500
http://bitbucket.org/pypy/extradoc/changeset/257cc228351a/

Log:	merged upstream

diff --git a/talk/pycon2012/tutorial/examples/03_memory.py b/talk/pycon2012/tutorial/examples/03_memory.py
--- a/talk/pycon2012/tutorial/examples/03_memory.py
+++ b/talk/pycon2012/tutorial/examples/03_memory.py
@@ -31,11 +31,6 @@
         print time.time() - t0
         usage, kb = read_smaps()
         print usage, kb * 1024 / count, "per instance"
-        gc.collect()
-        usage, kb = read_smaps()
-        print "after collect", usage, kb * 1024 / count, "per instance"
-        #import pdb
-        #pdb.set_trace()
         time.sleep(1)
 
 if __name__ == '__main__':


More information about the pypy-commit mailing list