mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
- Patch 1433928:
- The copy module now "copies" function objects (as atomic objects). - dict.__getitem__ now looks for a __missing__ hook before raising KeyError. - Added a new type, defaultdict, to the collections module. This uses the new __missing__ hook behavior added to dict (see above).
This commit is contained in:
parent
ab51f5f24d
commit
1968ad32cd
12 changed files with 611 additions and 10 deletions
|
@ -67,9 +67,12 @@ set of components copied.
|
|||
|
||||
\end{itemize}
|
||||
|
||||
This version does not copy types like module, class, function, method,
|
||||
This module does not copy types like module, method,
|
||||
stack trace, stack frame, file, socket, window, array, or any similar
|
||||
types.
|
||||
types. It does ``copy'' functions and classes (shallow and deeply),
|
||||
by returning the original object unchanged; this is compatible with
|
||||
the way these are treated by the \module{pickle} module.
|
||||
\versionchanged[Added copying functions]{2.5}
|
||||
|
||||
Classes can use the same interfaces to control copying that they use
|
||||
to control pickling. See the description of module
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue