Skip to content

Commit

Permalink
[3.12] Give poplib.POP3.rpop a proper docstring (pythonGH-127370) (p…
Browse files Browse the repository at this point in the history
…ython#127722)

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

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

Co-authored-by: Stan Ulbrych <[email protected]>
  • Loading branch information
miss-islington and StanFromIreland authored Dec 7, 2024
1 parent cd46fb6 commit 87f912a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/poplib.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 87f912a

Please sign in to comment.