From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Sat, 7 Dec 2024 16:13:49 +0000 (+0000) Subject: Give `poplib.POP3.rpop` a proper docstring (#127370) X-Git-Tag: v3.14.0a3~92 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27d0d2141319d82709eb09ba20065df3e1714fab;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Lib/poplib.py b/Lib/poplib.py index 1a1629d175b6..beb93a0d57cf 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)