diff options
author | Raymond Hettinger <python@rcn.com> | 2004-05-31 03:15:02 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-05-31 03:15:02 (GMT) |
commit | 874ebd5c3d0f9eebe41cdf40ae7f968681819efe (patch) | |
tree | 5e48bfe76ab467b667b0cdf239dea4ba3167f268 /Doc | |
parent | 027bb633b6899a0847d81cb35cbccdff5a468766 (diff) | |
download | cpython-874ebd5c3d0f9eebe41cdf40ae7f968681819efe.zip cpython-874ebd5c3d0f9eebe41cdf40ae7f968681819efe.tar.gz cpython-874ebd5c3d0f9eebe41cdf40ae7f968681819efe.tar.bz2 |
Add weakref support to sockets and re pattern objects.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/whatsnew24.tex | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/whatsnew24.tex b/Doc/whatsnew/whatsnew24.tex index 1db4303..bcb9134 100644 --- a/Doc/whatsnew/whatsnew24.tex +++ b/Doc/whatsnew/whatsnew24.tex @@ -558,6 +558,10 @@ For example: earlier in the expression. If the specified group matched, the regular expression pattern \var{A} will be tested against the string; if the group didn't match, the pattern \var{B} will be used instead. + +\item The \module{weakref} module now supports a wider variety of objects + including Python functions, class instances, sets, frozensets, deques, + arrays, files, sockets, and regular expression pattern objects. \end{itemize} |