Message 175877 - Python tracker (original) (raw)

Updated 02 and 03 patches (mostly) in line with Antoine's review comments:

  1. poplib_02_server_capabilities_v3.diff:

Completely right. Done.

  1. poplib_03_starttls_v3.diff:

where?

undone

Here I'm following: at :ref:pop3-objects in Doc/library/poplib.rst,

All POP3 commands are represented by methods of the same name, in lower-case; most return the response text sent by the server.

IMHO, having a single method with a name different than the underlying POP command would just be confusing. For this reason, I'd rather avoid adding an alias like in

starttls = stls

or the reverse...

Right, non need to mimick pre-SSLContext method signatures!

undone