Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
251a1566
Commit
251a1566
authored
Aug 18, 2010
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
what's new 3.2: use :mod:
parent
1a17b391
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Doc/whatsnew/3.2.rst
Doc/whatsnew/3.2.rst
+4
-4
No files found.
Doc/whatsnew/3.2.rst
View file @
251a1566
...
...
@@ -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*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment