| Commit message (Expand) | Author | Age | Files | Lines |
* | Define Py_BUILD_CORE_MODULE | Miss Islington (bot) | 2022-01-13 | 1 | -2/+2 |
|
|
* | bpo-43124: Fix smtplib multiple CRLF injection (GH-25987) | Miss Islington (bot) | 2021-08-29 | 1 | -0/+55 |
|
|
* | bpo-44498: suppress DeprecationWarnings for asynchat, asyncore and smtpd in t... | Miss Islington (bot) | 2021-06-24 | 1 | -2/+6 |
|
|
* | bpo-27820: Fix AUTH LOGIN logic in smtplib.SMTP (GH-24118) | Pandu E POLUAN | 2021-03-12 | 1 | -1/+44 |
|
|
* | bpo-42756: Configure LMTP Unix-domain socket to use global default timeout wh... | Ross | 2021-01-01 | 1 | -0/+11 |
|
|
* | bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413) | Christian Heimes | 2020-11-20 | 1 | -2/+2 |
|
|
* | bpo-40275: Adding threading_helper submodule in test.support (GH-20263) | Hai Shi | 2020-05-27 | 1 | -16/+16 |
|
|
* | bpo-9216: hashlib usedforsecurity fixes (GH-20258) | Christian Heimes | 2020-05-22 | 1 | -0/+1 |
|
|
* | bpo-40275: Move requires_hashdigest() to test.support.hashlib_helper (GH-19716) | Hai Shi | 2020-04-29 | 1 | -2/+2 |
|
|
* | bpo-40275: Avoid importing socket in test.support (GH-19603) | Serhiy Storchaka | 2020-04-25 | 1 | -3/+4 |
|
|
* | bpo-39329: Add timeout parameter for smtplib.LMTP constructor (GH-17998) | Dong-hee Na | 2020-01-14 | 1 | -30/+45 |
|
|
* | bpo-39259: smtp.SMTP/SMTP_SSL now reject timeout = 0 (GH-17958) | Dong-hee Na | 2020-01-14 | 1 | -0/+5 |
|
|
* | bpo-38614: Use support timeout constants (GH-17572)HEADmaster | Victor Stinner | 2019-12-11 | 1 | -18/+31 |
|
|
* | bpo-38614: Use test.support.LOOPBACK_TIMEOUT constant (GH-17554) | Victor Stinner | 2019-12-10 | 1 | -29/+56 |
|
|
* | bpo-38270: Check for hash digest algorithms and avoid MD5 (GH-16382) | Christian Heimes | 2019-09-25 | 1 | -1/+10 |
|
|
* | Remove unused imports in tests (GH-14518) | Victor Stinner | 2019-07-01 | 1 | -1/+1 |
|
|
* | bpo-35133: Fix mistakes when concatenate string literals on different lines. ... | Serhiy Storchaka | 2018-11-05 | 1 | -1/+1 |
|
|
* | bpo-32680 add default "sock" on SMTP objects (#5345) | Romuald Brunet | 2018-10-09 | 1 | -0/+7 |
|
|
* | bpo-34246: Make sure test_smtplib always cleans resources when finished (GH-9... | Pablo Galindo | 2018-09-07 | 1 | -7/+47 |
|
|
* | bpo-34246: Use no mutable default args in smtplib (GH-8554) | Pablo Aguiar | 2018-09-07 | 1 | -0/+28 |
|
|
* | bpo-32663 Make SMTPUTF8SimTests run (#5314) | chason | 2018-07-25 | 1 | -25/+14 |
|
|
* | bpo-32727: smtplib's SMTP.send_message behaves differently with from_addr and... | Stéphane Wirtel | 2018-01-31 | 1 | -1/+18 |
|
|
* | bpo-31234: Join threads in tests (#3572) | Victor Stinner | 2017-09-14 | 1 | -1/+3 |
|
|
* | bpo-29639: change test.support.HOST to "localhost" | Gregory P. Smith | 2017-09-09 | 1 | -27/+40 |
|
|
* | bpo-31370: Remove support for threads-less builds (#3385) | Antoine Pitrou | 2017-09-07 | 1 | -10/+1 |
|
|
* | #25446: Fix regression in smtplib's AUTH LOGIN support. | R David Murray | 2015-11-08 | 1 | -58/+121 |
|
|
* | - Issue #15014: SMTP.auth() and SMTP.login() now support RFC 4954's optional | Barry Warsaw | 2015-07-09 | 1 | -9/+83 |
|
|
* | #24218: Add SMTPUTF8 support to send_message. | R David Murray | 2015-05-17 | 1 | -1/+46 |
|
|
* | #22027: Add RFC6531 support to smtplib. | R David Murray | 2015-05-16 | 1 | -0/+119 |
|
|
* | #16914: add timestamps to smtplib debugging output via new debuglevel 2. | R David Murray | 2015-04-16 | 1 | -0/+21 |
|
|
* | Merge #22215: have the smtplib 'quit' command reset the state. | R David Murray | 2014-08-30 | 1 | -0/+15 |
|\ |
|
| * | #22215: have the smtplib 'quit' command reset the state. | R David Murray | 2014-08-30 | 1 | -0/+15 |
|
|
* | | Issue #21566: Make use of socket.listen() default backlog. | Charles-François Natali | 2014-07-23 | 1 | -1/+1 |
|
|
* | | #15014: Add 'auth' command to implement auth mechanisms and use it in login. | R David Murray | 2014-07-03 | 1 | -22/+38 |
|
|
* | | #19662: Eliminate warnings in other test modules that use smtpd. | R David Murray | 2014-06-11 | 1 | -3/+5 |
|/ |
|
* | #17498: Defer SMTPServerDisconnected errors until the next command. | R David Murray | 2014-04-14 | 1 | -0/+13 |
|
|
* | merge with 3.3 | Georg Brandl | 2014-02-10 | 1 | -1/+29 |
|
|
* | Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests. | Serhiy Storchaka | 2014-02-08 | 1 | -3/+3 |
|\ |
|
| * | Issue #20549: Use specific asserts in mailbox, smtplib and poplib tests. | Serhiy Storchaka | 2014-02-08 | 1 | -3/+3 |
|
|
* | | Closes #6683: add a test that exercises multiple authentication. | Andrew Kuchling | 2013-11-11 | 1 | -0/+9 |
|
|
* | | merge 3.3 (#19125) | Benjamin Peterson | 2013-09-29 | 1 | -3/+3 |
|\ \
| |/ |
|
| * | fix test to run and test that smtpd does support ELHO (closes #19125) | Benjamin Peterson | 2013-09-29 | 1 | -3/+3 |
|
|
* | | Merge: #5713: One more test_smtplib timing fix. | R David Murray | 2013-03-21 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | #5713: One more test_smtplib timing fix. | R David Murray | 2013-03-21 | 1 | -1/+1 |
|
|
* | | Merge: #5712: Preemptively fix some other possible timing issues. | R David Murray | 2013-03-21 | 1 | -3/+3 |
|\ \
| |/ |
|
| * | Merge: #5712: Preemptively fix some other possible timing issues. | R David Murray | 2013-03-21 | 1 | -3/+3 |
| |\ |
|
| | * | #5712: Preemptively fix some other possible timing issues. | R David Murray | 2013-03-21 | 1 | -3/+3 |
|
|
* | | | Merge: #5713: fix timing issue in smtplib tests. | R David Murray | 2013-03-21 | 1 | -0/+3 |
|\ \ \
| |/ / |
|
| * | | Merge: #5713: fix timing issue in smtplib tests. | R David Murray | 2013-03-21 | 1 | -0/+3 |
| |\ \
| | |/ |
|
| | * | #5713: fix timing issue in smtplib tests. | R David Murray | 2013-03-21 | 1 | -0/+3 |
|
|