]> granicus.if.org Git - python/commitdiff
what's new 3.2: use :mod:
authorVictor Stinner <victor.stinner@haypocalc.com>
Wed, 18 Aug 2010 23:41:33 +0000 (23:41 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Wed, 18 Aug 2010 23:41:33 +0000 (23:41 +0000)
Doc/whatsnew/3.2.rst

index 7364e27ec74b74f3afc68053cad381e1be1b2029..3927f4b62c40c2029d226ab6a7f5c17cb44573ec 100644 (file)
@@ -66,9 +66,9 @@ Some smaller changes made to the core Python language are:
 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 @@ New, Improved, and Deprecated Modules
 
   (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*