-
-
Notifications
You must be signed in to change notification settings - Fork 31.7k
bpo-30514: test_pop3lib asyncore with asyncio #1864
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
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
@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.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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. |
I'll work on getting this up to date so it unblocks removing asyncore. Note to self: local branch name is |
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