René's URL Explorer Experiment


Title: bpo-40255: Implement Immortal Instances - Optimization 3 by eduardo-elizondo · Pull Request #31490 · python/cpython · GitHub

Open Graph Title: bpo-40255: Implement Immortal Instances - Optimization 3 by eduardo-elizondo · Pull Request #31490 · python/cpython

X Title: bpo-40255: Implement Immortal Instances - Optimization 3 by eduardo-elizondo · Pull Request #31490 · python/cpython

Description: Immortalizing Modules After Import This is an optimization on top of PR19474. The improvement here uses the assumption that top-level modules and its globals will (most likely) be alive during the entire lifecycle of the runtime. Thus, every time that a top level import happens, it will now immortalize the module and its contents. Benchmark Results Overall: 1% slower compared to the master branch pyperformance results 2to3: Mean +- std dev: [cpython_master] 432 ms +- 15 ms -> [immortal_instances_opt3] 447 ms +- 14 ms: 1.04x slower chaos: Mean +- std dev: [cpython_master] 126 ms +- 4 ms -> [immortal_instances_opt3] 119 ms +- 4 ms: 1.06x faster django_template: Mean +- std dev: [cpython_master] 62.2 ms +- 2.0 ms -> [immortal_instances_opt3] 63.3 ms +- 2.4 ms: 1.02x slower float: Mean +- std dev: [cpython_master] 128 ms +- 4 ms -> [immortal_instances_opt3] 135 ms +- 5 ms: 1.05x slower go: Mean +- std dev: [cpython_master] 244 ms +- 10 ms -> [immortal_instances_opt3] 227 ms +- 6 ms: 1.07x faster hexiom: Mean +- std dev: [cpython_master] 11.5 ms +- 0.6 ms -> [immortal_instances_opt3] 11.3 ms +- 0.3 ms: 1.02x faster html5lib: Mean +- std dev: [cpython_master] 97.9 ms +- 4.2 ms -> [immortal_instances_opt3] 103 ms +- 6 ms: 1.06x slower json_dumps: Mean +- std dev: [cpython_master] 19.2 ms +- 0.7 ms -> [immortal_instances_opt3] 19.8 ms +- 0.5 ms: 1.03x slower logging_format: Mean +- std dev: [cpython_master] 10.4 us +- 0.3 us -> [immortal_instances_opt3] 11.1 us +- 0.5 us: 1.06x slower nqueens: Mean +- std dev: [cpython_master] 159 ms +- 5 ms -> [immortal_instances_opt3] 154 ms +- 3 ms: 1.04x faster pathlib: Mean +- std dev: [cpython_master] 28.5 ms +- 0.7 ms -> [immortal_instances_opt3] 27.9 ms +- 0.9 ms: 1.02x faster pickle: Mean +- std dev: [cpython_master] 16.0 us +- 0.5 us -> [immortal_instances_opt3] 15.6 us +- 0.5 us: 1.03x faster pickle_dict: Mean +- std dev: [cpython_master] 37.3 us +- 0.6 us -> [immortal_instances_opt3] 36.2 us +- 0.8 us: 1.03x faster pickle_pure_python: Mean +- std dev: [cpython_master] 572 us +- 14 us -> [immortal_instances_opt3] 581 us +- 15 us: 1.02x slower pidigits: Mean +- std dev: [cpython_master] 284 ms +- 15 ms -> [immortal_instances_opt3] 276 ms +- 6 ms: 1.03x faster pyflate: Mean +- std dev: [cpython_master] 770 ms +- 28 ms -> [immortal_instances_opt3] 760 ms +- 21 ms: 1.01x faster python_startup: Mean +- std dev: [cpython_master] 12.6 ms +- 0.4 ms -> [immortal_instances_opt3] 12.1 ms +- 0.5 ms: 1.04x faster python_startup_no_site: Mean +- std dev: [cpython_master] 8.89 ms +- 0.39 ms -> [immortal_instances_opt3] 8.55 ms +- 0.45 ms: 1.04x faster raytrace: Mean +- std dev: [cpython_master] 529 ms +- 16 ms -> [immortal_instances_opt3] 540 ms +- 19 ms: 1.02x slower regex_compile: Mean +- std dev: [cpython_master] 233 ms +- 6 ms -> [immortal_instances_opt3] 241 ms +- 5 ms: 1.03x slower regex_dna: Mean +- std dev: [cpython_master] 239 ms +- 6 ms -> [immortal_instances_opt3] 252 ms +- 4 ms: 1.06x slower regex_effbot: Mean +- std dev: [cpython_master] 4.53 ms +- 0.12 ms -> [immortal_instances_opt3] 4.74 ms +- 0.11 ms: 1.05x slower regex_v8: Mean +- std dev: [cpython_master] 33.2 ms +- 0.8 ms -> [immortal_instances_opt3] 34.1 ms +- 1.0 ms: 1.03x slower richards: Mean +- std dev: [cpython_master] 82.8 ms +- 3.7 ms -> [immortal_instances_opt3] 85.9 ms +- 3.8 ms: 1.04x slower scimark_fft: Mean +- std dev: [cpython_master] 571 ms +- 12 ms -> [immortal_instances_opt3] 623 ms +- 23 ms: 1.09x slower scimark_lu: Mean +- std dev: [cpython_master] 195 ms +- 6 ms -> [immortal_instances_opt3] 207 ms +- 7 ms: 1.06x slower scimark_monte_carlo: Mean +- std dev: [cpython_master] 116 ms +- 5 ms -> [immortal_instances_opt3] 120 ms +- 3 ms: 1.03x slower scimark_sor: Mean +- std dev: [cpython_master] 211 ms +- 6 ms -> [immortal_instances_opt3] 216 ms +- 7 ms: 1.02x slower scimark_sparse_mat_mult: Mean +- std dev: [cpython_master] 8.28 ms +- 0.40 ms -> [immortal_instances_opt3] 8.56 ms +- 0.22 ms: 1.03x slower sympy_expand: Mean +- std dev: [cpython_master] 878 ms +- 34 ms -> [immortal_instances_opt3] 831 ms +- 24 ms: 1.06x faster sympy_integrate: Mean +- std dev: [cpython_master] 35.2 ms +- 1.0 ms -> [immortal_instances_opt3] 36.2 ms +- 1.9 ms: 1.03x slower sympy_str: Mean +- std dev: [cpython_master] 514 ms +- 11 ms -> [immortal_instances_opt3] 521 ms +- 18 ms: 1.01x slower unpickle: Mean +- std dev: [cpython_master] 21.5 us +- 0.7 us -> [immortal_instances_opt3] 21.8 us +- 0.5 us: 1.02x slower unpickle_pure_python: Mean +- std dev: [cpython_master] 463 us +- 17 us -> [immortal_instances_opt3] 446 us +- 14 us: 1.04x faster xml_etree_parse: Mean +- std dev: [cpython_master] 245 ms +- 6 ms -> [immortal_instances_opt3] 239 ms +- 8 ms: 1.02x faster xml_etree_generate: Mean +- std dev: [cpython_master] 146 ms +- 4 ms -> [immortal_instances_opt3] 149 ms +- 4 ms: 1.02x slower Benchmark hidden because not significant (15): deltablue, fannkuch, json_loads, logging_silent, logging_simple, meteor_contest, nbody, pickle_list, spectral_norm, sympy_sum, telco, unpack_sequence, unpickle_list, xml_etree_iterparse, xml_etree_process Geometric mean: 1.01x slower Implementation Details Any time that a new module import happens in PyImport_ImportModuleLevelObject , we now check the current depth of the python stack. If we are at the top level, it then immortalizes the module as well as all the transitive dependencies. Not only that but it also pushes all the found containers into the permanent GC generation since none of these objects should never be collected again. Module Finalization This skips over the correct finalization of the immortalized modules since that’s already handled in PR31489. https://bugs.python.org/issue40255

Open Graph Description: Immortalizing Modules After Import This is an optimization on top of PR19474. The improvement here uses the assumption that top-level modules and its globals will (most likely) be alive during the ...

X Description: Immortalizing Modules After Import This is an optimization on top of PR19474. The improvement here uses the assumption that top-level modules and its globals will (most likely) be alive during the ...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:bc203618-b120-047d-5d17-7d85eba23c53
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9CB6:9124A:11F7183:175E6C8:696B10A3
html-safe-nonce5987016cc8e88645a90c280d8280f73b12f3e5348c04d60a76ed6b0bedf57f5e
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5Q0I2OjkxMjRBOjExRjcxODM6MTc1RTZDODo2OTZCMTBBMyIsInZpc2l0b3JfaWQiOiI4Nzc4NTcxMTUwODQxODExMTA3IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac14639fbb92918f94f82b85e3d399e44d05ca89a92fa1497ba6eeb6083b542d9d
hovercard-subject-tagpull_request:860050776
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/31490/files
twitter:imagehttps://avatars.githubusercontent.com/u/5315899?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/5315899?s=400&v=4
og:image:altImmortalizing Modules After Import This is an optimization on top of PR19474. The improvement here uses the assumption that top-level modules and its globals will (most likely) be alive during the ...
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/31490/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F31490%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%2F31490%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/31490/files
Reloadhttps://github.com/python/cpython/pull/31490/files
Reloadhttps://github.com/python/cpython/pull/31490/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/31490/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/31490/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
eduardo-elizondohttps://github.com/eduardo-elizondo
python:mainhttps://github.com/python/cpython/tree/main
eduardo-elizondo:immortal-references-opt3https://github.com/eduardo-elizondo/cpython/tree/immortal-references-opt3
Conversation 6 https://github.com/python/cpython/pull/31490
Commits 4 https://github.com/python/cpython/pull/31490/commits
Checks 0 https://github.com/python/cpython/pull/31490/checks
Files changed https://github.com/python/cpython/pull/31490/files
Please reload this pagehttps://github.com/python/cpython/pull/31490/files
bpo-40255: Implement Immortal Instances - Optimization 3 https://github.com/python/cpython/pull/31490/files#top
Show all changes 4 commits https://github.com/python/cpython/pull/31490/files
420967a bpo-40255: Implement Immortal Instances - Optimization 3 eduardo-elizondo Feb 20, 2022 https://github.com/python/cpython/pull/31490/commits/420967ab3e994d847a149d28d3613112dfdddd17
e756b30 Immortalize module as well eduardo-elizondo Feb 21, 2022 https://github.com/python/cpython/pull/31490/commits/e756b30f6343e2903c5f0ceb520fce21f0f209b0
5d806ae Only immortalize top level modules eduardo-elizondo Feb 22, 2022 https://github.com/python/cpython/pull/31490/commits/5d806aead4c73c0ab67d2c597e94a8b48bd0306c
e153dc5 Fix tests eduardo-elizondo Feb 22, 2022 https://github.com/python/cpython/pull/31490/commits/e153dc541e0b640df6fa0f714743b5e3c9da3c13
Clear filters https://github.com/python/cpython/pull/31490/files
Please reload this pagehttps://github.com/python/cpython/pull/31490/files
Please reload this pagehttps://github.com/python/cpython/pull/31490/files
boolobject.h https://github.com/python/cpython/pull/31490/files#diff-cb015dd8a8161c3ca18f71fc78aac892d865a2a096a13ffc03a9cda8b02970ae
pycore_object.h https://github.com/python/cpython/pull/31490/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
moduleobject.h https://github.com/python/cpython/pull/31490/files#diff-b922950b4d9070569144f21cce5616a05ef2b86415c05e965f10acfbe8652d9f
object.h https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
test_python_api.py https://github.com/python/cpython/pull/31490/files#diff-da3283c514904d57cb053937cb058a3cb3fae31a6224dbceb8a7f1e7a0a1db7f
test_builtin.py https://github.com/python/cpython/pull/31490/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
test_gc.py https://github.com/python/cpython/pull/31490/files#diff-9d9e863bd2a456b669ec9600be793699e861340d91d7c417a8a5b5b8cfbd09a7
test_module.py https://github.com/python/cpython/pull/31490/files#diff-9c0ae6e468115715b32ee1cf0ba1ab11be8d5fd9a73f1927c616869e88ac6fe4
test_regrtest.py https://github.com/python/cpython/pull/31490/files#diff-0efcd6408facaca9938a255b25aeac062326b4f7185533c67426fc3057b53893
test_sys.py https://github.com/python/cpython/pull/31490/files#diff-f3ae0e3fbb12fe0717e2d9d8801f5d9f3091c34254d1302b228422d7d07fdc5d
2021-12-18-08-57-24.bpo-40255.XDDrSO.rst https://github.com/python/cpython/pull/31490/files#diff-ccd6ee110eb97c5057af6a9c47f83bff0087df1d2832ef29530280a7070b9023
gcmodule.c https://github.com/python/cpython/pull/31490/files#diff-3ba495fac5f4cc4a582187117515f3177ab91823c65a59af962fe180e06d9e77
longobject.c https://github.com/python/cpython/pull/31490/files#diff-1a6e70e2beeecad88840c67284ac4d54a36998029244771fcc820e801390726a
object.c https://github.com/python/cpython/pull/31490/files#diff-ba56d44ce0dd731d979970b966fde9d8dd15d12a82f727a052a8ad48d4a49363
import.c https://github.com/python/cpython/pull/31490/files#diff-28cfc3e2868980a79d93d2ebdc8747dcb9231f3dd7f2caef96e74107d1ea3bf3
Include/boolobject.hhttps://github.com/python/cpython/pull/31490/files#diff-cb015dd8a8161c3ca18f71fc78aac892d865a2a096a13ffc03a9cda8b02970ae
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Include/boolobject.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-cb015dd8a8161c3ca18f71fc78aac892d865a2a096a13ffc03a9cda8b02970ae
https://github.com/python/cpython/pull/31490/files#diff-cb015dd8a8161c3ca18f71fc78aac892d865a2a096a13ffc03a9cda8b02970ae
Include/internal/pycore_object.hhttps://github.com/python/cpython/pull/31490/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Include/internal/pycore_object.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
https://github.com/python/cpython/pull/31490/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L266
Include/moduleobject.hhttps://github.com/python/cpython/pull/31490/files#diff-b922950b4d9070569144f21cce5616a05ef2b86415c05e965f10acfbe8652d9f
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Include/moduleobject.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-b922950b4d9070569144f21cce5616a05ef2b86415c05e965f10acfbe8652d9f
https://github.com/python/cpython/pull/31490/files#diff-b922950b4d9070569144f21cce5616a05ef2b86415c05e965f10acfbe8652d9f
Include/object.hhttps://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Include/object.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31490/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
Lib/ctypes/test/test_python_api.pyhttps://github.com/python/cpython/pull/31490/files#diff-da3283c514904d57cb053937cb058a3cb3fae31a6224dbceb8a7f1e7a0a1db7f
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Lib/ctypes/test/test_python_api.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-da3283c514904d57cb053937cb058a3cb3fae31a6224dbceb8a7f1e7a0a1db7f
https://github.com/python/cpython/pull/31490/files#diff-da3283c514904d57cb053937cb058a3cb3fae31a6224dbceb8a7f1e7a0a1db7f
Lib/test/test_builtin.pyhttps://github.com/python/cpython/pull/31490/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Lib/test/test_builtin.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
https://github.com/python/cpython/pull/31490/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
https://github.com/python/cpython/pull/31490/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
brettcannonhttps://github.com/brettcannon
Feb 22, 2022https://github.com/python/cpython/pull/31490/files#r812459134
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/31490/files
brettcannonhttps://github.com/brettcannon
Feb 22, 2022https://github.com/python/cpython/pull/31490/files#r812459164
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/31490/files
https://github.com/python/cpython/pull/31490/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
Lib/test/test_gc.pyhttps://github.com/python/cpython/pull/31490/files#diff-9d9e863bd2a456b669ec9600be793699e861340d91d7c417a8a5b5b8cfbd09a7
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Lib/test/test_gc.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-9d9e863bd2a456b669ec9600be793699e861340d91d7c417a8a5b5b8cfbd09a7
https://github.com/python/cpython/pull/31490/files#diff-9d9e863bd2a456b669ec9600be793699e861340d91d7c417a8a5b5b8cfbd09a7
Lib/test/test_module.pyhttps://github.com/python/cpython/pull/31490/files#diff-9c0ae6e468115715b32ee1cf0ba1ab11be8d5fd9a73f1927c616869e88ac6fe4
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Lib/test/test_module.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-9c0ae6e468115715b32ee1cf0ba1ab11be8d5fd9a73f1927c616869e88ac6fe4
https://github.com/python/cpython/pull/31490/files#diff-9c0ae6e468115715b32ee1cf0ba1ab11be8d5fd9a73f1927c616869e88ac6fe4
Lib/test/test_regrtest.pyhttps://github.com/python/cpython/pull/31490/files#diff-0efcd6408facaca9938a255b25aeac062326b4f7185533c67426fc3057b53893
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Lib/test/test_regrtest.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-0efcd6408facaca9938a255b25aeac062326b4f7185533c67426fc3057b53893
https://github.com/python/cpython/pull/31490/files#diff-0efcd6408facaca9938a255b25aeac062326b4f7185533c67426fc3057b53893
Lib/test/test_sys.pyhttps://github.com/python/cpython/pull/31490/files#diff-f3ae0e3fbb12fe0717e2d9d8801f5d9f3091c34254d1302b228422d7d07fdc5d
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Lib/test/test_sys.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-f3ae0e3fbb12fe0717e2d9d8801f5d9f3091c34254d1302b228422d7d07fdc5d
https://github.com/python/cpython/pull/31490/files#diff-f3ae0e3fbb12fe0717e2d9d8801f5d9f3091c34254d1302b228422d7d07fdc5d
Misc/NEWS.d/next/Core and Builtins/2021-12-18-08-57-24.bpo-40255.XDDrSO.rsthttps://github.com/python/cpython/pull/31490/files#diff-ccd6ee110eb97c5057af6a9c47f83bff0087df1d2832ef29530280a7070b9023
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Misc/NEWS.d/next/Core%20and%20Builtins/2021-12-18-08-57-24.bpo-40255.XDDrSO.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L469
Modules/gcmodule.chttps://github.com/python/cpython/pull/31490/files#diff-3ba495fac5f4cc4a582187117515f3177ab91823c65a59af962fe180e06d9e77
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Modules/gcmodule.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-3ba495fac5f4cc4a582187117515f3177ab91823c65a59af962fe180e06d9e77
https://github.com/python/cpython/pull/31490/files#diff-3ba495fac5f4cc4a582187117515f3177ab91823c65a59af962fe180e06d9e77
https://github.com/python/cpython/pull/31490/files#diff-3ba495fac5f4cc4a582187117515f3177ab91823c65a59af962fe180e06d9e77
brettcannonhttps://github.com/brettcannon
Feb 22, 2022https://github.com/python/cpython/pull/31490/files#r812459504
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/31490/files
methanehttps://github.com/methane
Feb 22, 2022https://github.com/python/cpython/pull/31490/files#r811591188
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/31490/files
https://github.com/python/cpython/pull/31490/files#diff-3ba495fac5f4cc4a582187117515f3177ab91823c65a59af962fe180e06d9e77
Objects/longobject.chttps://github.com/python/cpython/pull/31490/files#diff-1a6e70e2beeecad88840c67284ac4d54a36998029244771fcc820e801390726a
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Objects/longobject.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-1a6e70e2beeecad88840c67284ac4d54a36998029244771fcc820e801390726a
https://github.com/python/cpython/pull/31490/files#diff-1a6e70e2beeecad88840c67284ac4d54a36998029244771fcc820e801390726a
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L214
Objects/object.chttps://github.com/python/cpython/pull/31490/files#diff-ba56d44ce0dd731d979970b966fde9d8dd15d12a82f727a052a8ad48d4a49363
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Objects/object.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-ba56d44ce0dd731d979970b966fde9d8dd15d12a82f727a052a8ad48d4a49363
https://github.com/python/cpython/pull/31490/files#diff-ba56d44ce0dd731d979970b966fde9d8dd15d12a82f727a052a8ad48d4a49363
https://github.com/python/cpython/pull/31490/files#diff-ba56d44ce0dd731d979970b966fde9d8dd15d12a82f727a052a8ad48d4a49363
brettcannonhttps://github.com/brettcannon
Feb 22, 2022https://github.com/python/cpython/pull/31490/files#r812459618
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/31490/files
https://github.com/python/cpython/pull/31490/files#diff-ba56d44ce0dd731d979970b966fde9d8dd15d12a82f727a052a8ad48d4a49363
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L261
Python/import.chttps://github.com/python/cpython/pull/31490/files#diff-28cfc3e2868980a79d93d2ebdc8747dcb9231f3dd7f2caef96e74107d1ea3bf3
View file https://github.com/eduardo-elizondo/cpython/blob/e153dc541e0b640df6fa0f714743b5e3c9da3c13/Python/import.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31490/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31490/files#diff-28cfc3e2868980a79d93d2ebdc8747dcb9231f3dd7f2caef96e74107d1ea3bf3
brettcannonhttps://github.com/brettcannon
Feb 22, 2022https://github.com/python/cpython/pull/31490/files#r812459667
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/31490/files
https://github.com/python/cpython/pull/31490/files#diff-28cfc3e2868980a79d93d2ebdc8747dcb9231f3dd7f2caef96e74107d1ea3bf3
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.