Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dbe6042

Browse files
author
Victor Stinner
committed
what's new 3.2: use :mod:
1 parent c732e3b commit dbe6042

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Doc/whatsnew/3.2.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ Some smaller changes made to the core Python language are:
6666
New, Improved, and Deprecated Modules
6767
=====================================
6868

69-
* The functools module now includes a new decorator for caching function calls.
70-
:func:`functools.lru_cache` can save repeated queries to an external resource
71-
whenever the results are expected to be the same.
69+
* The :mod:`functools` module now includes a new decorator for caching
70+
function calls. :func:`functools.lru_cache` can save repeated queries to an
71+
external resource whenever the results are expected to be the same.
7272

7373
For example, adding a caching decorator to a database query function can save
7474
database accesses for popular searches::
@@ -133,7 +133,7 @@ New, Improved, and Deprecated Modules
133133

134134
(Added by Antoine Pitrou; :issue:`8524`.)
135135

136-
* The *sqlite3* module has some new features:
136+
* The :mod:`sqlite3` module has some new features:
137137

138138
* XXX *enable_load_extension*
139139

0 commit comments

Comments
 (0)