[3.13] Give poplib.POP3.rpop a proper docstring (GH-127370) (#127721)

Give `poplib.POP3.rpop` a proper docstring (GH-127370)

Previously `poplib.POP3.rpop` had a "Not sure what this does" docstring, now it has been fixed.
(cherry picked from commit 27d0d21413)

Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2024-12-07 17:41:23 +01:00 committed by GitHub
parent d95df6a75b
commit 2ba5190f01
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)