# HG changeset patch # User Alex Gaynor <alex.gaynor@gmail.com> # Date 1389481143 28800 # Sat Jan 11 14:59:03 2014 -0800 # Branch extradoc # Node ID add99aaf7a214dd9945c87f2782776ec7afbe6f8 # Parent 6f9a9faa137a717e5172046391cb8bdd65a39fff This is no longer really an issue diff --git a/performance.html b/performance.html --- a/performance.html +++ b/performance.html @@ -243,8 +243,6 @@ <p>locals(), globals(), sys._getframe(), sys.exc_info(), and sys.settrace work in PyPy, but they incur a performance penalty that can be huge by disabling the JIT over the enclosing JIT scope.</p> -<p>One unobvious case where frame introspection is used is the logging -module. Don't use the logging module if you need to run fast.</p> <p><em>(Thanks Eric S. Raymond for the text above)</em></p> </div> </div> diff --git a/source/performance.txt b/source/performance.txt --- a/source/performance.txt +++ b/source/performance.txt @@ -236,9 +236,6 @@ work in PyPy, but they incur a performance penalty that can be huge by disabling the JIT over the enclosing JIT scope. -One unobvious case where frame introspection is used is the logging -module. Don't use the logging module if you need to run fast. - *(Thanks Eric S. Raymond for the text above)*