[Python-checkins] r84193 - python/branches/py3k/Doc/whatsnew/3.2.rst

victor.stinner python-checkins at python.org
Thu Aug 19 01:41:37 CEST 2010


Author: victor.stinner
Date: Thu Aug 19 01:41:33 2010
New Revision: 84193

Log:
what's new 3.2: use :mod:


Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Thu Aug 19 01:41:33 2010
@@ -66,9 +66,9 @@
 New, Improved, and Deprecated Modules
 =====================================
 
-* The functools module now includes a new decorator for caching function calls.
-  :func:`functools.lru_cache` can save repeated queries to an external resource
-  whenever the results are expected to be the same.
+* The :mod:`functools` module now includes a new decorator for caching
+  function calls. :func:`functools.lru_cache` can save repeated queries to an
+  external resource whenever the results are expected to be the same.
 
   For example, adding a caching decorator to a database query function can save
   database accesses for popular searches::
@@ -133,7 +133,7 @@
 
   (Added by Antoine Pitrou; :issue:`8524`.)
 
-* The *sqlite3* module has some new features:
+* The :mod:`sqlite3` module has some new features:
 
   * XXX *enable_load_extension*
 


More information about the Python-checkins mailing list