René's URL Explorer Experiment


Title: bpo-43224: Draft implementation of PEP 646 by mrahtz · Pull Request #30398 · python/cpython · GitHub

Open Graph Title: bpo-43224: Draft implementation of PEP 646 by mrahtz · Pull Request #30398 · python/cpython

X Title: bpo-43224: Draft implementation of PEP 646 by mrahtz · Pull Request #30398 · python/cpython

Description: PEP 646 (Variadic Generics) hasn't yet been completely approved by the steering council, but here's a draft of its implementation so we can get started on code review. Update 2021-01-19: the SC has approved the PEP, so full steam ahead! TODO: Finish addressing @pradeep90's comments from the previous PR, #24527 Add tests for typing.get_args and typing.get_origin (rather than just checking __args__ etc) A couple of notes below. @pradeep90 @gvanrossum @Fidget-Spinner Starred tuple types I realised there's a tricky issue with starred tuple types. If we have e.g. tuple[int, *tuple[str, bool]], the obvious thing to do would be to unpack the inner tuple at runtime, resulting in tuple[int, str, bool]. This would imply that iter(tuple[str, bool]) creates an iterator returning str then bool. But this would cause problems when using starred tuple types as the type of *args, e.g. def foo(*args: *tuple[str, bool]): The type of foo.__annotations__['args'] should definitely not be tuple[str, bool]. That would instead imply def foo(*args: tuple[str, bool]) The current PEP draft states that when a starred object is used as the annotation of *args, its iterator should return only a single value. (Or at least, this is the behaviour specified for *args: *Ts; @pradeep90, I've just realised, should we update that section of the PEP to make it explicit that that starred tuples can be also used for *args?) I think the simplest solution to both of these problems is to not unpack tuple types as runtime, having *tuple[stuff] instead creating an iterator that returns only a single item, an instance of a new 'starred tuple'. (Note that such a type does have to exist anyway, in order to represent e.g. *tuple[int, ...].) For the native tuple type, I've tentatively implemented this by adding a new starred flag to gaobject in genericaliasobject.c rather than creating a whole new type. This makes implementation easier, but maybe it's suboptimal considering that gaobject is used for lots of things other than tuple - feedback appreciated. For typing.Tuple, I've implemented a new class in typing.py called StarredTuple, which should behave in the same way. (This does mean that *tuple[int] != *Tuple[int], but given that tuple[int] != Tuple[int], this seems fine.) Implementation of *tuple I'm pretty uncertain about my implementation in genericaliasobject.c. In particular: I don't know what I'm doing with garbage collection; scrutiny on whether I'm doing it right appreciated. I wonder whether there's a way to make it simpler. In typing.py, the implementation is as simple as def __iter__(self): yield StarredTuple(self). Is there a way to do something similar in ga_iter, without the need to also implement ga_iternext? https://bugs.python.org/issue43224

Open Graph Description: PEP 646 (Variadic Generics) hasn't yet been completely approved by the steering council, but here's a draft of its implementation so we can get started on code review. Update 2021-01-19: th...

X Description: PEP 646 (Variadic Generics) hasn't yet been completely approved by the steering council, but here's a draft of its implementation so we can get started on code review. Update 2021-0...

Opengraph URL: https://github.com/python/cpython/pull/30398

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:653358f0-f006-1fef-f060-9689dc9a535e
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id8494:24CD64:24D1A4E:30A9700:696B1BAA
html-safe-nonce64a44129101c1c125440f63fdab633705687f8897b05405488ba7ebe52422c91
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4NDk0OjI0Q0Q2NDoyNEQxQTRFOjMwQTk3MDA6Njk2QjFCQUEiLCJ2aXNpdG9yX2lkIjoiODI3NTA2ODE5NjI0NjcyMzQ5OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac431a14bdd1984f1a05384b28db8af701841c348617ca6085e2f319f29992ba50
hovercard-subject-tagpull_request:813810314
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/python/cpython/pull/30398/files
twitter:imagehttps://avatars.githubusercontent.com/u/4431336?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/4431336?s=400&v=4
og:image:altPEP 646 (Variadic Generics) hasn't yet been completely approved by the steering council, but here's a draft of its implementation so we can get started on code review. Update 2021-01-19: th...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None5f99f7c1d70f01da5b93e5ca90303359738944d8ab470e396496262c66e60b8d
turbo-cache-controlno-preview
diff-viewunified
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 full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release82560a55c6b2054555076f46e683151ee28a19bc
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/pull/30398/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F30398%2Ffiles
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%2Fpull%2F30398%2Ffiles
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%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/pull/30398/files
Reloadhttps://github.com/python/cpython/pull/30398/files
Reloadhttps://github.com/python/cpython/pull/30398/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
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/pull/30398/files
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
Sign up for GitHub https://github.com/signup?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
mrahtzhttps://github.com/mrahtz
python:mainhttps://github.com/python/cpython/tree/main
mrahtz:pep646https://github.com/mrahtz/cpython/tree/pep646
Conversation 44 https://github.com/python/cpython/pull/30398
Commits 18 https://github.com/python/cpython/pull/30398/commits
Checks 0 https://github.com/python/cpython/pull/30398/checks
Files changed https://github.com/python/cpython/pull/30398/files
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
bpo-43224: Draft implementation of PEP 646 https://github.com/python/cpython/pull/30398/files#top
Show all changes 18 commits https://github.com/python/cpython/pull/30398/files
64abc0a PEP 646: Grammar and compiler changes mrahtz Dec 3, 2021 https://github.com/python/cpython/pull/30398/commits/64abc0ad5202e368a6b00d941a08bf64590da257
b725671 PEP 646: Add tests for syntax changes mrahtz Jan 3, 2022 https://github.com/python/cpython/pull/30398/commits/b725671a14dd66d48a537a9b1e201561d7b5f7ea
ea329b9 PEP 646: Add AST tests for *args annotations mrahtz Dec 7, 2021 https://github.com/python/cpython/pull/30398/commits/ea329b9507e2236c4541dffdcfc525fb39f30da9
681dc4e PEP 646: Add AST tests for return types with unpacking mrahtz Dec 7, 2021 https://github.com/python/cpython/pull/30398/commits/681dc4e1c8dd4cceec8cc69ff99e2528cee60ded
69f575f PEP 646: Add AST tests for variable annotations with unpacking mrahtz Dec 7, 2021 https://github.com/python/cpython/pull/30398/commits/69f575f04a1528793bd9ed7e5f3afa8e81071567
095a620 PEP 646: Add support for starring tuple types mrahtz Jan 2, 2022 https://github.com/python/cpython/pull/30398/commits/095a62081f758cced3060a1e9f5b4ece194b3168
6713748 PEP 646: Add tests for starring tuple types mrahtz Jan 2, 2022 https://github.com/python/cpython/pull/30398/commits/671374879c36b82a5e834e22eddac978f090651e
038b8f0 PEP 646: Implement support in typing.py mrahtz Jan 2, 2022 https://github.com/python/cpython/pull/30398/commits/038b8f06ae5b662feda884fb752485424c6a5ed6
f028339 PEP 646: Add tests for everything in typing.py mrahtz Jan 2, 2022 https://github.com/python/cpython/pull/30398/commits/f0283394e6fe99f0f4398a6ba13ca3c4990e0033
38c17d3 PEP 646: Add tests for typing.get_{origin,args} mrahtz Jan 4, 2022 https://github.com/python/cpython/pull/30398/commits/38c17d3d6143f904f5429e938371b200a631f3ef
9991937 PEP 646: Various fixes to genericaliasobject.c mrahtz Jan 15, 2022 https://github.com/python/cpython/pull/30398/commits/9991937e5472a9d98868d1426bff09578a4b0c0f
9017d22 PEP 646: Fix test_pep646_syntax import mrahtz Jan 15, 2022 https://github.com/python/cpython/pull/30398/commits/9017d22bb82528d28873069f2506a7af211fa371
07ed599 PEP 646: Add docstring for TypeVarTuple mrahtz Jan 17, 2022 https://github.com/python/cpython/pull/30398/commits/07ed59948a86aa8a70f1df338a21951d858c93e1
74e5252 PEP 646: Swap a Py_INCREF with a Py_NewRef mrahtz Jan 20, 2022 https://github.com/python/cpython/pull/30398/commits/74e525239cde766092e8aec8198a809012414032
6cb3aa5 PEP 646: Add test for assigning to a slice containing a star mrahtz Jan 20, 2022 https://github.com/python/cpython/pull/30398/commits/6cb3aa50c1bc003a1febd13fd9942484b56cbd1c
daef59b 📜🤖 Added by blurb_it. blurb-it[bot] Jan 20, 2022 https://github.com/python/cpython/pull/30398/commits/daef59b7777580dad3b7e88b96316eea205e0b23
3c2a7e7 PEP 646: Add line to Doc/whatsnew mrahtz Jan 20, 2022 https://github.com/python/cpython/pull/30398/commits/3c2a7e71d27e546594d06f4c581fe3b7a5c583f3
456156a PEP 646: Use stdbool.h; separate test cases mrahtz Jan 25, 2022 https://github.com/python/cpython/pull/30398/commits/456156a3106fa2d05c0ce155313697af9668bd66
Clear filters https://github.com/python/cpython/pull/30398/files
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
3.11.rst https://github.com/python/cpython/pull/30398/files#diff-78f24041d66ab8ed2ae1aee94bcd42396d27af833cb96a3c506294c6d6dce82d
python.gram https://github.com/python/cpython/pull/30398/files#diff-2973ca53337859793077e9bdc1a1623063379f0fdfcb788836fd82ebb66b763b
test_ast.py https://github.com/python/cpython/pull/30398/files#diff-3f516b60719dd445d33225e4f316b36e85c9c51a843a0147349d11a005c55937
test_genericalias.py https://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
test_pep646_syntax.py https://github.com/python/cpython/pull/30398/files#diff-ee066cba0321e2389fca2161c9e90bf270585f64e82e00f78a1de8253557573c
test_typing.py https://github.com/python/cpython/pull/30398/files#diff-04d29c98076c2d6bb75921ea9becb26a862544d39b71db87b6e354c759b9305d
typing.py https://github.com/python/cpython/pull/30398/files#diff-ddb987fca5f5df0c9a2f5521ed687919d70bb3d64eaeb8021f98833a2a716887
2022-01-20-16-48-09.bpo-43224.WDihrT.rst https://github.com/python/cpython/pull/30398/files#diff-6e6223d841af276d1ad47bcd52e4b9283e6b11b6c11e19d87c86bd53af1e6143
genericaliasobject.c https://github.com/python/cpython/pull/30398/files#diff-828d12085a29364c67442b193bb62906e3469fbe21367499fd62817f98190014
parser.c https://github.com/python/cpython/pull/30398/files#diff-6d39440cedc67d1ce7a0586bfb6ecb8483803448a9c93f3fae3ad0e2260e29f7
compile.c https://github.com/python/cpython/pull/30398/files#diff-ebc983d9f91e5bcf73500e377ac65e85863c4f77fd5b6b6caf4fcdf7c0f0b057
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L114
Doc/whatsnew/3.11.rsthttps://github.com/python/cpython/pull/30398/files#diff-78f24041d66ab8ed2ae1aee94bcd42396d27af833cb96a3c506294c6d6dce82d
View file https://github.com/mrahtz/cpython/blob/456156a3106fa2d05c0ce155313697af9668bd66/Doc/whatsnew/3.11.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/30398/{{ revealButtonHref }}
https://github.com/python/cpython/pull/30398/files#diff-78f24041d66ab8ed2ae1aee94bcd42396d27af833cb96a3c506294c6d6dce82d
https://github.com/python/cpython/pull/30398/files#diff-78f24041d66ab8ed2ae1aee94bcd42396d27af833cb96a3c506294c6d6dce82d
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L301
Grammar/python.gramhttps://github.com/python/cpython/pull/30398/files#diff-2973ca53337859793077e9bdc1a1623063379f0fdfcb788836fd82ebb66b763b
View file https://github.com/mrahtz/cpython/blob/456156a3106fa2d05c0ce155313697af9668bd66/Grammar/python.gram
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/30398/{{ revealButtonHref }}
https://github.com/python/cpython/pull/30398/files#diff-2973ca53337859793077e9bdc1a1623063379f0fdfcb788836fd82ebb66b763b
https://github.com/python/cpython/pull/30398/files#diff-2973ca53337859793077e9bdc1a1623063379f0fdfcb788836fd82ebb66b763b
pablogsalhttps://github.com/pablogsal
Jan 10, 2022https://github.com/python/cpython/pull/30398/files#r781376885
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
mrahtzhttps://github.com/mrahtz
Jan 15, 2022https://github.com/python/cpython/pull/30398/files#r785295707
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
mrahtzhttps://github.com/mrahtz
Jan 25, 2022https://github.com/python/cpython/pull/30398/files#r791823479
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
https://github.com/python/cpython/pull/30398/files#diff-2973ca53337859793077e9bdc1a1623063379f0fdfcb788836fd82ebb66b763b
https://github.com/python/cpython/pull/30398/files#diff-2973ca53337859793077e9bdc1a1623063379f0fdfcb788836fd82ebb66b763b
pablogsalhttps://github.com/pablogsal
Jan 10, 2022https://github.com/python/cpython/pull/30398/files#r781373008
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
mrahtzhttps://github.com/mrahtz
Jan 15, 2022https://github.com/python/cpython/pull/30398/files#r785296813
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
https://github.com/python/cpython/pull/30398/files#diff-2973ca53337859793077e9bdc1a1623063379f0fdfcb788836fd82ebb66b763b
Lib/test/test_ast.pyhttps://github.com/python/cpython/pull/30398/files#diff-3f516b60719dd445d33225e4f316b36e85c9c51a843a0147349d11a005c55937
View file https://github.com/mrahtz/cpython/blob/456156a3106fa2d05c0ce155313697af9668bd66/Lib/test/test_ast.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/30398/{{ revealButtonHref }}
https://github.com/python/cpython/pull/30398/files#diff-3f516b60719dd445d33225e4f316b36e85c9c51a843a0147349d11a005c55937
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
https://github.com/python/cpython/pull/30398/files#diff-3f516b60719dd445d33225e4f316b36e85c9c51a843a0147349d11a005c55937
https://github.com/python/cpython/pull/30398/files#diff-3f516b60719dd445d33225e4f316b36e85c9c51a843a0147349d11a005c55937
https://github.com/python/cpython/pull/30398/files#diff-3f516b60719dd445d33225e4f316b36e85c9c51a843a0147349d11a005c55937
https://github.com/python/cpython/pull/30398/files#diff-3f516b60719dd445d33225e4f316b36e85c9c51a843a0147349d11a005c55937
https://github.com/python/cpython/pull/30398/files#diff-3f516b60719dd445d33225e4f316b36e85c9c51a843a0147349d11a005c55937
https://github.com/python/cpython/pull/30398/files#diff-3f516b60719dd445d33225e4f316b36e85c9c51a843a0147349d11a005c55937
https://github.com/python/cpython/pull/30398/files#diff-3f516b60719dd445d33225e4f316b36e85c9c51a843a0147349d11a005c55937
Lib/test/test_genericalias.pyhttps://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
View file https://github.com/mrahtz/cpython/blob/456156a3106fa2d05c0ce155313697af9668bd66/Lib/test/test_genericalias.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/30398/{{ revealButtonHref }}
https://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
https://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
https://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
https://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
https://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
https://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
https://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
https://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
https://github.com/python/cpython/pull/30398/files#diff-8e29b27c5ead543d31b10d6fa2991d5640e6d60c36ac7b7aa873712c4fe2f944
Please reload this pagehttps://github.com/python/cpython/pull/30398/files
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.