diff options
author | Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> | 2024-12-07 16:13:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-07 16:13:49 (GMT) |
commit | 27d0d2141319d82709eb09ba20065df3e1714fab (patch) | |
tree | f7e4860d01e57fdea9b114282d5a084718b69331 /Lib | |
parent | 72dca6c4eda0d63ee35a0aa619ae931ab226bef9 (diff) | |
download | cpython-27d0d2141319d82709eb09ba20065df3e1714fab.zip cpython-27d0d2141319d82709eb09ba20065df3e1714fab.tar.gz cpython-27d0d2141319d82709eb09ba20065df3e1714fab.tar.bz2 |
Give `poplib.POP3.rpop` a proper docstring (#127370)
Previously `poplib.POP3.rpop` had a "Not sure what this does" docstring, now it has been fixed.
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 1a1629d..beb93a0 100644 --- a/Lib/poplib.py +++ b/Lib/poplib.py @@ -309,7 +309,7 @@ class POP3: # optional commands: def rpop(self, user): - """Not sure what this does.""" + """Send RPOP command to access the mailbox with an alternate user.""" return self._shortcmd('RPOP %s' % user) |