commit | 008d8ef1a87dcf8fdada5ab01e27dcb6e4100472 | [log] [tgz] |
---|---|---|
author | Jeffrey Yasskin <jyasskin@gmail.com> | Sat Dec 06 17:09:27 2008 +0000 |
committer | Jeffrey Yasskin <jyasskin@gmail.com> | Sat Dec 06 17:09:27 2008 +0000 |
tree | 142fc573b4e35b094ce69778425ae757f56ab946 | |
parent | fd24b323f9998d34669c84ba0d5c3dbd827bdc17 [diff] |
Merged revisions 67494 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r67494 | jeffrey.yasskin | 2008-12-02 22:46:45 -0800 (Tue, 02 Dec 2008) | 5 lines Speed up Python (according to pybench and 2to3-on-itself) by 1-2% by caching whether any thread has tracing turned on, which saves one load instruction in the fast_next_opcode path in PyEval_EvalFrameEx(). See issue 4477. ........