diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-01-14 00:29:41 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-01-14 00:29:41 (GMT) |
commit | e4c270c2a887d251966fae5bfc93dbe2b312ee73 (patch) | |
tree | 3f396736d6317de4675f92db7d3dca04cc7a32ee /Misc | |
parent | 08ccf202e606a066668f4ef85df9a9c0d07e1ba1 (diff) | |
download | cpython-e4c270c2a887d251966fae5bfc93dbe2b312ee73.zip cpython-e4c270c2a887d251966fae5bfc93dbe2b312ee73.tar.gz cpython-e4c270c2a887d251966fae5bfc93dbe2b312ee73.tar.bz2 |
Re-apply patch #1700288 (first applied in r59931, rolled back in r59940)
now that ctypes uses a more supported method to create types:
Method cache optimization, by Armin Rigo, ported to 2.6 by Kevin Jacobs.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1? Core and builtins ----------------- +- Patch #1700288: added a type attribute cache that caches method accesses, + resulting in speedups in heavily object-oriented code. + - Bug #1776: __import__() no longer accepts filenames on any platform. The first parameter to __import__() must be a valid module name. |