Uh oh!
There was an error while loading. Please reload this page.
bpo-30514: test_pop3lib asyncore with asyncio - #1864
Conversation
Pop3 server stub was base on asyncore/asynchat which is deprecated, new stub is using asyncio instead. test_too_long_lines make sure we read remaining overlong response cmd_user answer only with +ERR message on invalid user
mention-bot
commented
May 30, 2017
@grzgrzgrz3, thanks for your PR! By analyzing the history of the files in this pull request, we identified @tiran, @serhiy-storchaka and @giampaolo to be potential reviewers. |
Codecov Report
@@ Coverage Diff @@## master #1864 +/- ##
=========================================
Coverage ? 82.68% =========================================
Files ? 1432 Lines ? 353405 Branches ? 0 =========================================
Hits ? 292229 Misses ? 61176 Partials ? 0
Continue to review full report at Codecov.
|
auvipy
left a comment
There was a problem hiding this comment.
a rebase on top of main branch would be a good first start
This PR is stale because it has been open for 30 days with no activity. |
JelleZijlstra
commented
May 10, 2022
I'll work on getting this up to date so it unblocks removing asyncore. Note to self: local branch name is |
AA-Turner
commented
Jun 7, 2022
Triggering CLA. |
This PR is stale because it has been open for 30 days with no activity. |
This PR is stale because it has been open for 30 days with no activity. |
This PR is stale because it has been open for 30 days with no activity. |
Pop3 server stub was base on asyncore/asynchat which is deprecated, new
stub is using asyncio instead.
test_too_long_lines make sure we read remaining overlong response
cmd_user answer only with +ERR message on invalid user
#74699