summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorStan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>2024-12-07 16:13:49 (GMT)
committerGitHub <noreply@github.com>2024-12-07 16:13:49 (GMT)
commit27d0d2141319d82709eb09ba20065df3e1714fab (patch)
treef7e4860d01e57fdea9b114282d5a084718b69331 /Lib
parent72dca6c4eda0d63ee35a0aa619ae931ab226bef9 (diff)
downloadcpython-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.py2
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)