diff options
author | Raymond Hettinger <python@rcn.com> | 2008-05-17 04:13:36 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-05-17 04:13:36 (GMT) |
commit | ce956842e2f2953bc8eeeb209415121760a3b337 (patch) | |
tree | d3a53fca20b8172a748ad4c501a0d1c7b4ef4f1e /Lib | |
parent | 518c44cecf3df7312cda8b15d0c44dce00ff9467 (diff) | |
download | cpython-ce956842e2f2953bc8eeeb209415121760a3b337.zip cpython-ce956842e2f2953bc8eeeb209415121760a3b337.tar.gz cpython-ce956842e2f2953bc8eeeb209415121760a3b337.tar.bz2 |
Fix-up docstring
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/poplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/poplib.py b/Lib/poplib.py index 149675a..4cffb04 100644 --- a/Lib/poplib.py +++ b/Lib/poplib.py @@ -240,7 +240,7 @@ class POP3: def rset(self): - """Not sure what this does.""" + """Unmark all messages marked for deletion.""" return self._shortcmd('RSET') |