]> granicus.if.org Git - python/commitdiff
Repair unfinished sentence
authorAndrew M. Kuchling <amk@amk.ca>
Tue, 15 Jan 2008 01:55:32 +0000 (01:55 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Tue, 15 Jan 2008 01:55:32 +0000 (01:55 +0000)
Doc/whatsnew/2.6.rst

index 50ca2b3c2cba4cad033a3f06bcd8f4f63e59e226..2835dae3b6a5dcc4b4e98923c1cf9ce37fdbd5f0 100644 (file)
@@ -675,9 +675,11 @@ Optimizations
 
 * Type objects now have a cache of methods that can reduc
   the amount of work required to find the correct method implementation
-  for a particular class; the interpreter may not need to traverse base 
-  classes 
-
+  for a particular class; once cached, the interpreter doesn't need to
+  traverse base classes to figure out the right method to call.  
+  The cache is cleared if a base class or the class itself is modified, 
+  so the cache should remain correct even in the face of Python's dynamic 
+  nature.
   (Original optimization implemented by Armin Rigo, updated for 
   Python 2.6 by Kevin Jacobs.)