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.
This commit is contained in:
Stan Ulbrych 2024-12-07 16:13:49 +00:00 committed by GitHub
parent 72dca6c4ed
commit 27d0d21413
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ def close(self):
# 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)