From 663f48f64f68f8794300730eee12dea559423f71 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Sat, 7 Dec 2024 16:13:49 +0000 Subject: [PATCH] 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 27d0d2141319d82709eb09ba20065df3e1714fab) Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> --- Lib/poplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/poplib.py b/Lib/poplib.py index 9a5ef03c983103..81b01385987c3b 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)