Python性能分析指南(13)

发表于:2013-11-12来源:开源中国社区作者:袁不语点击数: 标签:性能测试
? 1 $ python - m memory_profiler primes.py 一旦程序退出,你将会看到看起来像这样的输出: view source print ? 01 Filename: primes.py 02 03 Line # Mem usage Increment Line Contents
?
1 $ python -m memory_profiler primes.py
一旦程序退出,你将会看到看起来像这样的输出:
01 Filename: primes.py
02  
03 Line #    Mem usage  Increment   Line Contents
04 ==============================================
05      2                           @profile

原文转自:http://www.oschina.net/translate/python-performance-analysis