René's URL Explorer Experiment


Title: Replace use of `test.test_asyncio.utils.TestCase` with `unittest.IsolatedAsyncioTestCase` · Issue #93357 · python/cpython · GitHub

Open Graph Title: Replace use of `test.test_asyncio.utils.TestCase` with `unittest.IsolatedAsyncioTestCase` · Issue #93357 · python/cpython

X Title: Replace use of `test.test_asyncio.utils.TestCase` with `unittest.IsolatedAsyncioTestCase` · Issue #93357 · python/cpython

Description: Feature or enhancement Get rid of ad-hoc implementation of async tests by using all relatively new features of standard IsolatedAsyncIoTestCase. For this we need to: replace all occurences of class ...(test_utils.TestCase): with class .....

Open Graph Description: Feature or enhancement Get rid of ad-hoc implementation of async tests by using all relatively new features of standard IsolatedAsyncIoTestCase. For this we need to: replace all occurences of class...

X Description: Feature or enhancement Get rid of ad-hoc implementation of async tests by using all relatively new features of standard IsolatedAsyncIoTestCase. For this we need to: replace all occurences of class...

Opengraph URL: https://github.com/python/cpython/issues/93357

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Replace use of `test.test_asyncio.utils.TestCase` with `unittest.IsolatedAsyncioTestCase`","articleBody":"**Feature or enhancement**\r\n\r\nGet rid of ad-hoc implementation of async tests by using all relatively new features of standard `IsolatedAsyncIoTestCase`. For this we need to:\r\n\r\n- replace all occurences of `class ...(test_utils.TestCase):` with `class ...(unittest.IsolatedAsynIoTestCase):`\r\n- remove manually created event loops in favor of the builtin one of `IsolatedAsyncIoTestCase`\r\n- make loop-dependend test cases `async`\r\n- replace multithreading with `asyncio` wherever possible\r\n- remove unused imports\r\n- remove the `TestCase` and classes it uses ([588 -\u003e 346 lines in test_asyncio/utils.py](https://github.com/python/cpython/compare/main...arhadthedev:remove-utilstestcase?expand=1))\r\n\r\n**Pitch**\r\n\r\n- `test_asyncio.utils.TestCase` provides no extra functionality over `IsolatedAsyncioTestCase`. Instead, it takes 200+ lines of code together with two more classes used nowhere else (`TestSelector` and `TestLoop`)\r\n- `TestCase` requires manual scheduling of tasks using `loop.run_until_complete` while `IsolatedAsyncioTestCase` allows `await`\r\n- `TestCase` was introduced on 2014 by c73701de7292b7de0fee5b7f82a610d7515c18a4 while `IsolatedAsynIoTestCase` was introduced 5 years later by 4dd3e3f9bbd320f0dd556688e04db0a6b55a7b52\r\n\r\n**Progress tracking**\r\n\r\n- [ ] find and fix a bug described in https://github.com/python/cpython/pull/98015#issuecomment-1271136419\r\n- [ ] test/test_asyncgen.py\r\n- [ ] test/test_coroutines.py\r\n- [ ] test/test_pdb.py\r\n- [ ] test/test_asyncio/test_base_events.py\r\n- [ ] test/test_asyncio/test_events.py\r\n- [ ] test/test_asyncio/test_futures.py\r\n- [ ] test/test_asyncio/test_pep492.py\r\n- [ ] test/test_asyncio/test_proactor_events.py\r\n- [ ] test/test_asyncio/test_sendfile.py\r\n- [ ] test/test_asyncio/test_sock_lowlevel.py\r\n- [ ] test/test_asyncio/test_ssl.py\r\n- [ ] test/test_asyncio/test_sslproto.py\r\n- [ ] test/test_asyncio/test_streams.py\r\n  - gh-93369\r\n  - gh-97896\r\n  - gh-98015\r\n- [ ] test/test_asyncio/test_subprocess.py\r\n- [ ] test/test_asyncio/test_tasks.py\r\n- [ ] test/test_asyncio/test_unix_events.py\r\n- [ ] test/test_asyncio/test_windows_events.py\r\n- [ ] replace multithreading with asyncio wherever possible\r\n- [ ] remove the `TestCase`\r\n- [ ] move `asyncio.set_event_loop_policy(None)` (a measure agains \"test altered the execution environment\" warning) into `IsolatedAsyncioTestCase`'s shutdown method\r\n\r\n\u003cdetails\u003e\r\n\u003csummary\u003eThere are 83 cases that use test_asyncio.utils.TestCase\u003c/summary\u003e\r\n\r\n- `test/test_asyncio/test_base_events.py:class BaseEventTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_base_events.py:class BaseEventLoopTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_base_events.py:class BaseEventLoopWithSelectorTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_base_events.py:class BaseLoopSockSendfileTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_base_events.py:class TestSelectorUtils(test_utils.TestCase):`\r\n- `test/test_asyncio/test_events.py:                               test_utils.TestCase):`\r\n- `test/test_asyncio/test_events.py:                                 test_utils.TestCase):`\r\n- `test/test_asyncio/test_events.py:                                   test_utils.TestCase):`\r\n- `test/test_asyncio/test_events.py:                                  test_utils.TestCase):`\r\n- `test/test_asyncio/test_events.py:                                 test_utils.TestCase):`\r\n- `test/test_asyncio/test_events.py:                               test_utils.TestCase):`\r\n- `test/test_asyncio/test_events.py:class HandleTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_futures.py:class DuckTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_futures.py:class CFutureTests(BaseFutureTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_futures.py:class CSubFutureTests(BaseFutureTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_futures.py:class PyFutureTests(BaseFutureTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_futures.py:                               test_utils.TestCase):`\r\n- `test/test_asyncio/test_futures.py:                                  test_utils.TestCase):`\r\n- `test/test_asyncio/test_futures.py:                                test_utils.TestCase):`\r\n- `test/test_asyncio/test_futures.py:                               test_utils.TestCase):`\r\n- `test/test_asyncio/test_futures.py:                              test_utils.TestCase):`\r\n- `test/test_asyncio/test_pep492.py:class BaseTest(test_utils.TestCase):`\r\n- `test/test_asyncio/test_proactor_events.py:class ProactorSocketTransportTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_proactor_events.py:class ProactorDatagramTransportTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_proactor_events.py:class BaseProactorEventLoopTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_proactor_events.py:class ProactorEventLoopUnixSockSendfileTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_selector_events.py:class BaseSelectorEventLoopTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_selector_events.py:class SelectorTransportTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_selector_events.py:class SelectorSocketTransportTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_selector_events.py:class SelectorSocketTransportBufferedProtocolTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_selector_events.py:class SelectorDatagramTransportTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_sendfile.py:                               test_utils.TestCase):`\r\n- `test/test_asyncio/test_sendfile.py:                                 test_utils.TestCase):`\r\n- `test/test_asyncio/test_sendfile.py:                                   test_utils.TestCase):`\r\n- `test/test_asyncio/test_sendfile.py:                                  test_utils.TestCase):`\r\n- `test/test_asyncio/test_sendfile.py:                                 test_utils.TestCase):`\r\n- `test/test_asyncio/test_sendfile.py:                               test_utils.TestCase):`\r\n- `test/test_asyncio/test_sock_lowlevel.py:                               test_utils.TestCase):`\r\n- `test/test_asyncio/test_sock_lowlevel.py:                                 test_utils.TestCase):`\r\n- `test/test_asyncio/test_sock_lowlevel.py:                                   test_utils.TestCase):`\r\n- `test/test_asyncio/test_sock_lowlevel.py:                                  test_utils.TestCase):`\r\n- `test/test_asyncio/test_sock_lowlevel.py:                                 test_utils.TestCase):`\r\n- `test/test_asyncio/test_sock_lowlevel.py:                               test_utils.TestCase):`\r\n- `test/test_asyncio/test_ssl.py:class TestSSL(test_utils.TestCase):`\r\n- `test/test_asyncio/test_sslproto.py:class SslProtoHandshakeTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_streams.py:class StreamTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_subprocess.py:class SubprocessTransportTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_subprocess.py:                                         test_utils.TestCase):`\r\n- `test/test_asyncio/test_subprocess.py:                                          test_utils.TestCase):`\r\n- `test/test_asyncio/test_subprocess.py:                                     test_utils.TestCase):`\r\n- `test/test_asyncio/test_subprocess.py:                                     test_utils.TestCase):`\r\n- `test/test_asyncio/test_subprocess.py:                                      test_utils.TestCase):`\r\n- `test/test_asyncio/test_subprocess.py:    class SubprocessProactorTests(SubprocessMixin, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:                          test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class CTask_CFuture_SubclassTests(BaseTaskTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class CTaskSubclass_PyFuture_Tests(BaseTaskTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class PyTask_CFutureSubclass_Tests(BaseTaskTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class CTask_PyFuture_Tests(BaseTaskTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class PyTask_CFuture_Tests(BaseTaskTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:                            test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class PyTask_PyFuture_SubclassTests(BaseTaskTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class CTask_Future_Tests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class PyIntrospectionTests(test_utils.TestCase, BaseTaskIntrospectionTests):`\r\n- `test/test_asyncio/test_tasks.py:class CIntrospectionTests(test_utils.TestCase, BaseTaskIntrospectionTests):`\r\n- `test/test_asyncio/test_tasks.py:class PyCurrentLoopTests(BaseCurrentLoopTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class CCurrentLoopTests(BaseCurrentLoopTests, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class GenericTaskTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class FutureGatherTests(GatherTestsBase, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class CoroutineGatherTests(GatherTestsBase, test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class RunCoroutineThreadsafeTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class SleepTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_tasks.py:class CompatibilityTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_unix_events.py:class SelectorEventLoopSignalTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_unix_events.py:class SelectorEventLoopUnixSocketTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_unix_events.py:class SelectorEventLoopUnixSockSendfileTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_unix_events.py:class UnixReadPipeTransportTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_unix_events.py:class UnixWritePipeTransportTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_unix_events.py:class SafeChildWatcherTests (ChildWatcherTestsMixin, test_utils.TestCase):`\r\n- `test/test_asyncio/test_unix_events.py:class FastChildWatcherTests (ChildWatcherTestsMixin, test_utils.TestCase):`\r\n- `test/test_asyncio/test_windows_events.py:class ProactorLoopCtrlC(test_utils.TestCase):`\r\n- `test/test_asyncio/test_windows_events.py:class ProactorMultithreading(test_utils.TestCase):`\r\n- `test/test_asyncio/test_windows_events.py:class ProactorTests(test_utils.TestCase):`\r\n- `test/test_asyncio/test_windows_events.py:class WinPolicyTests(test_utils.TestCase):`\r\n\u003c/details\u003e\n\n\u003c!-- gh-linked-prs --\u003e\n### Linked PRs\n* gh-98877\n\u003c!-- /gh-linked-prs --\u003e\n","author":{"url":"https://github.com/arhadthedev","@type":"Person","name":"arhadthedev"},"datePublished":"2022-05-30T16:35:28.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/93357/cpython/issues/93357"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:a699a590-7c39-f8b4-7fef-ea67687ba4e6
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA0B0:24B4E0:98D05F:CD009E:6969C1C3
html-safe-noncec55c8e7f4adcbdede99236b46da17290035b2c3ab1b0b1b8942774f1f23a429a
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBMEIwOjI0QjRFMDo5OEQwNUY6Q0QwMDlFOjY5NjlDMUMzIiwidmlzaXRvcl9pZCI6IjI4MjY0OTIwNTQ4NDM1Mzk5MDciLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac6cf9b93aa2017822153085fac5a3dad8f888e1ea3dcf4fdc3a3db221d2901b62
hovercard-subject-tagissue:1252948649
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/python/cpython/93357/issue_layout
twitter:imagehttps://opengraph.githubassets.com/95c89f087286c23353be3e9bf817f7a52bd60955a8674105f7a666827945b313/python/cpython/issues/93357
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/95c89f087286c23353be3e9bf817f7a52bd60955a8674105f7a666827945b313/python/cpython/issues/93357
og:image:altFeature or enhancement Get rid of ad-hoc implementation of async tests by using all relatively new features of standard IsolatedAsyncIoTestCase. For this we need to: replace all occurences of class...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamearhadthedev
hostnamegithub.com
expected-hostnamegithub.com
Noneacedec8b5f975d9e3d494ddd8f949b0b8a0de59d393901e26f73df9dcba80056
turbo-cache-controlno-preview
go-importgithub.com/python/cpython git https://github.com/python/cpython.git
octolytics-dimension-user_id1525981
octolytics-dimension-user_loginpython
octolytics-dimension-repository_id81598961
octolytics-dimension-repository_nwopython/cpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id81598961
octolytics-dimension-repository_network_root_nwopython/cpython
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release83c08c21cdda978090dc44364b71aa5bc6dcea79
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/93357#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F93357
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F93357
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/issues/93357
Reloadhttps://github.com/python/cpython/issues/93357
Reloadhttps://github.com/python/cpython/issues/93357
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/93357
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 33.9k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 71.1k https://github.com/login?return_to=%2Fpython%2Fcpython
Code https://github.com/python/cpython
Issues 5k+ https://github.com/python/cpython/issues
Pull requests 2.1k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects 31 https://github.com/python/cpython/projects
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/python/cpython/security
Please reload this pagehttps://github.com/python/cpython/issues/93357
Insights https://github.com/python/cpython/pulse
Code https://github.com/python/cpython
Issues https://github.com/python/cpython/issues
Pull requests https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
New issuehttps://github.com/login?return_to=https://github.com/python/cpython/issues/93357
New issuehttps://github.com/login?return_to=https://github.com/python/cpython/issues/93357
Replace use of test.test_asyncio.utils.TestCase with unittest.IsolatedAsyncioTestCasehttps://github.com/python/cpython/issues/93357#top
testsTests in the Lib/test dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22tests%22
topic-asynciohttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22topic-asyncio%22
type-featureA feature request or enhancementhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-feature%22
https://github.com/arhadthedev
https://github.com/arhadthedev
arhadthedevhttps://github.com/arhadthedev
on May 30, 2022https://github.com/python/cpython/issues/93357#issue-1252948649
588 -> 346 lines in test_asyncio/utils.pyhttps://github.com/python/cpython/compare/main...arhadthedev:remove-utilstestcase?expand=1
c73701dhttps://github.com/python/cpython/commit/c73701de7292b7de0fee5b7f82a610d7515c18a4
4dd3e3fhttps://github.com/python/cpython/commit/4dd3e3f9bbd320f0dd556688e04db0a6b55a7b52
gh-97983: Revert "Lay the foundation for further work in asyncio.test_streams: port server cases to IsolatedAsyncioTestCase" #98015 (comment)https://github.com/python/cpython/pull/98015#issuecomment-1271136419
gh-93357: Lay the foundation for further work in asyncio.test_streams: port server cases to IsolatedAsyncioTestCase #93369https://github.com/python/cpython/pull/93369
gh-93357: Port test cases to IsolatedAsyncioTestCase, part 2 #97896https://github.com/python/cpython/pull/97896
gh-97983: Revert "Lay the foundation for further work in asyncio.test_streams: port server cases to IsolatedAsyncioTestCase" #98015https://github.com/python/cpython/pull/98015
gh-93357: Port test_pep492 to IsolatedAsyncioTestCase #98877https://github.com/python/cpython/pull/98877
testsTests in the Lib/test dirhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22tests%22
topic-asynciohttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22topic-asyncio%22
type-featureA feature request or enhancementhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-feature%22
Unittest & doctest issueshttps://github.com/orgs/python/projects/16
asynciohttps://github.com/orgs/python/projects/29
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.