https://github.com/python/cpython/commit/27d0d2141319d82709eb09ba20065df3e1714fab
commit: 27d0d2141319d82709eb09ba20065df3e1714fab
branch: main
author: Stan Ulbrych <[email protected]>
committer: Eclips4 <[email protected]>
date: 2024-12-07T18:13:49+02:00
summary:

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.

files:
M Lib/poplib.py

diff --git a/Lib/poplib.py b/Lib/poplib.py
index 1a1629d175b6d9..beb93a0d57cf93 100644
--- a/Lib/poplib.py
+++ b/Lib/poplib.py
@@ -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)
 
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to