diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-07-10 14:24:46 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-07-10 14:24:46 (GMT) |
commit | 501b4d02ff9ff9174451044ac821412fdfd674f9 (patch) | |
tree | 3af04d6eccc2d34fafd73cd6458b3df3ec550432 /Doc | |
parent | ca126a02ea71aa55de59c12bdd99ec2f7cb6d89d (diff) | |
download | cpython-501b4d02ff9ff9174451044ac821412fdfd674f9.zip cpython-501b4d02ff9ff9174451044ac821412fdfd674f9.tar.gz cpython-501b4d02ff9ff9174451044ac821412fdfd674f9.tar.bz2 |
Merged revisions 82771 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r82771 | r.david.murray | 2010-07-10 10:23:36 -0400 (Sat, 10 Jul 2010) | 2 lines
Add missing docs for re module 'purge' function.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/re.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 4daa1ac..5509b16 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -692,6 +692,11 @@ form. metacharacters in it. +.. function:: purge() + + Clear the regular expression cache. + + .. exception:: error Exception raised when a string passed to one of the functions here is not a |