René's URL Explorer Experiment


Title: bpo-40255: Implement Immortal Instances - Optimizations Combined by eduardo-elizondo · Pull Request #31491 · python/cpython · GitHub

Open Graph Title: bpo-40255: Implement Immortal Instances - Optimizations Combined by eduardo-elizondo · Pull Request #31491 · python/cpython

X Title: bpo-40255: Implement Immortal Instances - Optimizations Combined by eduardo-elizondo · Pull Request #31491 · python/cpython

Description: This is an optimization on top of PR19474. It combines PR31488, PR31489, and PR31490 into a single change to measure the combined performance benefits. These results do not change too much from what was already achieved independently by these optimizations (as some of the immortalized instances start overlaping with each other). That being said, performance will keep scaling as the application scales as well. The current microbenchmarks do not measure applications that contain hundreds of imports or thousands of interned strings. Nonetheless, it is still worthwhile to consider all of these improvements in conjunction when thinking about larger scale applications. Benchmark Results Overall: 0% faster compared to the main branch and the highest number of non-stat significant benchmarks (18) pyperformance results 2to3: Mean +- std dev: [cpython_master] 432 ms +- 15 ms -> [immortal_instances_opt_combined_v3] 451 ms +- 16 ms: 1.04x slower chaos: Mean +- std dev: [cpython_master] 126 ms +- 4 ms -> [immortal_instances_opt_combined_v3] 123 ms +- 4 ms: 1.03x faster deltablue: Mean +- std dev: [cpython_master] 7.35 ms +- 0.20 ms -> [immortal_instances_opt_combined_v3] 7.74 ms +- 0.41 ms: 1.05x slower django_template: Mean +- std dev: [cpython_master] 62.2 ms +- 2.0 ms -> [immortal_instances_opt_combined_v3] 63.7 ms +- 2.4 ms: 1.02x slower fannkuch: Mean +- std dev: [cpython_master] 664 ms +- 15 ms -> [immortal_instances_opt_combined_v3] 677 ms +- 18 ms: 1.02x slower float: Mean +- std dev: [cpython_master] 128 ms +- 4 ms -> [immortal_instances_opt_combined_v3] 135 ms +- 7 ms: 1.05x slower go: Mean +- std dev: [cpython_master] 244 ms +- 10 ms -> [immortal_instances_opt_combined_v3] 228 ms +- 14 ms: 1.07x faster json_dumps: Mean +- std dev: [cpython_master] 19.2 ms +- 0.7 ms -> [immortal_instances_opt_combined_v3] 20.1 ms +- 0.8 ms: 1.04x slower logging_format: Mean +- std dev: [cpython_master] 10.4 us +- 0.3 us -> [immortal_instances_opt_combined_v3] 11.0 us +- 0.4 us: 1.06x slower logging_silent: Mean +- std dev: [cpython_master] 201 ns +- 8 ns -> [immortal_instances_opt_combined_v3] 205 ns +- 7 ns: 1.02x slower logging_simple: Mean +- std dev: [cpython_master] 9.77 us +- 0.32 us -> [immortal_instances_opt_combined_v3] 10.2 us +- 0.4 us: 1.04x slower nqueens: Mean +- std dev: [cpython_master] 159 ms +- 5 ms -> [immortal_instances_opt_combined_v3] 154 ms +- 3 ms: 1.03x faster pickle: Mean +- std dev: [cpython_master] 16.0 us +- 0.5 us -> [immortal_instances_opt_combined_v3] 16.6 us +- 0.7 us: 1.04x slower pickle_dict: Mean +- std dev: [cpython_master] 37.3 us +- 0.6 us -> [immortal_instances_opt_combined_v3] 35.6 us +- 2.1 us: 1.05x faster pidigits: Mean +- std dev: [cpython_master] 284 ms +- 15 ms -> [immortal_instances_opt_combined_v3] 273 ms +- 9 ms: 1.04x faster pyflate: Mean +- std dev: [cpython_master] 770 ms +- 28 ms -> [immortal_instances_opt_combined_v3] 746 ms +- 24 ms: 1.03x faster python_startup: Mean +- std dev: [cpython_master] 12.6 ms +- 0.4 ms -> [immortal_instances_opt_combined_v3] 11.6 ms +- 0.6 ms: 1.08x faster python_startup_no_site: Mean +- std dev: [cpython_master] 8.89 ms +- 0.39 ms -> [immortal_instances_opt_combined_v3] 8.11 ms +- 0.43 ms: 1.10x faster raytrace: Mean +- std dev: [cpython_master] 529 ms +- 16 ms -> [immortal_instances_opt_combined_v3] 544 ms +- 17 ms: 1.03x slower scimark_fft: Mean +- std dev: [cpython_master] 571 ms +- 12 ms -> [immortal_instances_opt_combined_v3] 589 ms +- 13 ms: 1.03x slower scimark_lu: Mean +- std dev: [cpython_master] 195 ms +- 6 ms -> [immortal_instances_opt_combined_v3] 205 ms +- 7 ms: 1.05x slower scimark_sor: Mean +- std dev: [cpython_master] 211 ms +- 6 ms -> [immortal_instances_opt_combined_v3] 216 ms +- 6 ms: 1.03x slower scimark_sparse_mat_mult: Mean +- std dev: [cpython_master] 8.28 ms +- 0.40 ms -> [immortal_instances_opt_combined_v3] 8.66 ms +- 0.30 ms: 1.05x slower sympy_expand: Mean +- std dev: [cpython_master] 878 ms +- 34 ms -> [immortal_instances_opt_combined_v3] 850 ms +- 27 ms: 1.03x faster sympy_integrate: Mean +- std dev: [cpython_master] 35.2 ms +- 1.0 ms -> [immortal_instances_opt_combined_v3] 36.6 ms +- 1.5 ms: 1.04x slower sympy_sum: Mean +- std dev: [cpython_master] 291 ms +- 13 ms -> [immortal_instances_opt_combined_v3] 309 ms +- 7 ms: 1.06x slower sympy_str: Mean +- std dev: [cpython_master] 514 ms +- 11 ms -> [immortal_instances_opt_combined_v3] 535 ms +- 13 ms: 1.04x slower telco: Mean +- std dev: [cpython_master] 10.4 ms +- 0.2 ms -> [immortal_instances_opt_combined_v3] 10.7 ms +- 0.5 ms: 1.03x slower unpack_sequence: Mean +- std dev: [cpython_master] 77.9 ns +- 2.3 ns -> [immortal_instances_opt_combined_v3] 70.6 ns +- 2.0 ns: 1.10x faster unpickle_list: Mean +- std dev: [cpython_master] 6.77 us +- 0.25 us -> [immortal_instances_opt_combined_v3] 6.95 us +- 0.22 us: 1.03x slower xml_etree_parse: Mean +- std dev: [cpython_master] 245 ms +- 6 ms -> [immortal_instances_opt_combined_v3] 238 ms +- 5 ms: 1.03x faster xml_etree_generate: Mean +- std dev: [cpython_master] 146 ms +- 4 ms -> [immortal_instances_opt_combined_v3] 143 ms +- 6 ms: 1.02x faster xml_etree_process: Mean +- std dev: [cpython_master] 102 ms +- 2 ms -> [immortal_instances_opt_combined_v3] 100 ms +- 3 ms: 1.02x faster Benchmark hidden because not significant (18): hexiom, html5lib, json_loads, meteor_contest, nbody, pathlib, pickle_list, pickle_pure_python, regex_compile, regex_dna, regex_effbot, regex_v8, richards, scimark_monte_carlo, spectral_norm, unpickle, unpickle_pure_python, xml_etree_iterparse Geometric mean: 1.00x faster https://bugs.python.org/issue40255

Open Graph Description: This is an optimization on top of PR19474. It combines PR31488, PR31489, and PR31490 into a single change to measure the combined performance benefits. These results do not change too much from wha...

X Description: This is an optimization on top of PR19474. It combines PR31488, PR31489, and PR31490 into a single change to measure the combined performance benefits. These results do not change too much from wha...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:66067b6b-b304-44c6-9470-eb44af637a86
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9DCA:2A6D10:246706E:2F3FA3B:696B5684
html-safe-nonce1bc139e1e73088584ee045ff4eea3b023a797d2e4aa4712a24ff46364f126458
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5RENBOjJBNkQxMDoyNDY3MDZFOjJGM0ZBM0I6Njk2QjU2ODQiLCJ2aXNpdG9yX2lkIjoiNzQ4NTU1OTE5ODk5Nzc2MzcxNiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmaca718dffc474f0da0d2410a0285de81e79a5df82340fac7eabda3fceb3db2537a
hovercard-subject-tagpull_request:860054203
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/31491/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:altThis is an optimization on top of PR19474. It combines PR31488, PR31489, and PR31490 into a single change to measure the combined performance benefits. These results do not change too much from wha...
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/31491/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F31491%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%2F31491%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/31491/files
Reloadhttps://github.com/python/cpython/pull/31491/files
Reloadhttps://github.com/python/cpython/pull/31491/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/31491/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/31491/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-opt-combinedhttps://github.com/eduardo-elizondo/cpython/tree/immortal-references-opt-combined
Conversation 17 https://github.com/python/cpython/pull/31491
Commits 1 https://github.com/python/cpython/pull/31491/commits
Checks 0 https://github.com/python/cpython/pull/31491/checks
Files changed https://github.com/python/cpython/pull/31491/files
Please reload this pagehttps://github.com/python/cpython/pull/31491/files
bpo-40255: Implement Immortal Instances - Optimizations Combined https://github.com/python/cpython/pull/31491/files#top
Show all changes 1 commit https://github.com/python/cpython/pull/31491/files
a72b3cd bpo-40255: Implement Immortal Instances - Optimizations Combined eduardo-elizondo Feb 22, 2022 https://github.com/python/cpython/pull/31491/commits/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f
Clear filters https://github.com/python/cpython/pull/31491/files
Please reload this pagehttps://github.com/python/cpython/pull/31491/files
Please reload this pagehttps://github.com/python/cpython/pull/31491/files
boolobject.h https://github.com/python/cpython/pull/31491/files#diff-cb015dd8a8161c3ca18f71fc78aac892d865a2a096a13ffc03a9cda8b02970ae
sysmodule.h https://github.com/python/cpython/pull/31491/files#diff-0c9f73735d4e3ab63721178da521a498c38581d4be8fb191fa7111c3c61bd430
pycore_object.h https://github.com/python/cpython/pull/31491/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
moduleobject.h https://github.com/python/cpython/pull/31491/files#diff-b922950b4d9070569144f21cce5616a05ef2b86415c05e965f10acfbe8652d9f
object.h https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
process.py https://github.com/python/cpython/pull/31491/files#diff-84a955ea642d41d9f164e9f94499d8eb33c357ec7f4362a341951f6f67ab21a1
test_python_api.py https://github.com/python/cpython/pull/31491/files#diff-da3283c514904d57cb053937cb058a3cb3fae31a6224dbceb8a7f1e7a0a1db7f
__init__.py https://github.com/python/cpython/pull/31491/files#diff-1bf0ad6d121df3948853dafdd8e5406709fe0c3911b30e3cf2def41717455c98
managers.py https://github.com/python/cpython/pull/31491/files#diff-9e59d8c837ebf181d34af715ac88bb8a4b6141ec18b703cef2c3c8136391abf7
tempfile.py https://github.com/python/cpython/pull/31491/files#diff-6553a99f3ae04c9fc9c2349ac27037bfe3b274d5ca54d5800d9c5b5f11e29d21
final_a.py https://github.com/python/cpython/pull/31491/files#diff-4335e7e18684135976e92204493974e2430282a4ff3e4bfa95280a5b57859fa1
final_b.py https://github.com/python/cpython/pull/31491/files#diff-8d4cac4b09e9daff58c16b9ce6acb0aa6321bbf8f87a64818b5100c747e8119e
test_builtin.py https://github.com/python/cpython/pull/31491/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
test_gc.py https://github.com/python/cpython/pull/31491/files#diff-9d9e863bd2a456b669ec9600be793699e861340d91d7c417a8a5b5b8cfbd09a7
test_io.py https://github.com/python/cpython/pull/31491/files#diff-c6987f6d27855daad275cfbf05fb3684c53fc82ff7146cd157e5838f9ad5f57f
test_module.py https://github.com/python/cpython/pull/31491/files#diff-9c0ae6e468115715b32ee1cf0ba1ab11be8d5fd9a73f1927c616869e88ac6fe4
test_regrtest.py https://github.com/python/cpython/pull/31491/files#diff-0efcd6408facaca9938a255b25aeac062326b4f7185533c67426fc3057b53893
test_sys.py https://github.com/python/cpython/pull/31491/files#diff-f3ae0e3fbb12fe0717e2d9d8801f5d9f3091c34254d1302b228422d7d07fdc5d
test_threading.py https://github.com/python/cpython/pull/31491/files#diff-8b4c7f5f9b60a27c4132899af6fa7157c7f1e57a0b6213bc616fe72fba04c168
__init__.py https://github.com/python/cpython/pull/31491/files#diff-21be9e4809f5cd7dcd4665eb0054b4bf9d924c2c9ce0a010e85dba405e94d9e9
2021-12-18-08-57-24.bpo-40255.XDDrSO.rst https://github.com/python/cpython/pull/31491/files#diff-ccd6ee110eb97c5057af6a9c47f83bff0087df1d2832ef29530280a7070b9023
gcmodule.c https://github.com/python/cpython/pull/31491/files#diff-3ba495fac5f4cc4a582187117515f3177ab91823c65a59af962fe180e06d9e77
main.c https://github.com/python/cpython/pull/31491/files#diff-79e40dbd94b164b5f42a960224cc7496e33c189b4c66a6810904eda7d703b6f2
longobject.c https://github.com/python/cpython/pull/31491/files#diff-1a6e70e2beeecad88840c67284ac4d54a36998029244771fcc820e801390726a
moduleobject.c https://github.com/python/cpython/pull/31491/files#diff-8c2a0fd137780a0ee11c19aae8e46e8490f7667698cd78a5bde466bc995a08c5
object.c https://github.com/python/cpython/pull/31491/files#diff-ba56d44ce0dd731d979970b966fde9d8dd15d12a82f727a052a8ad48d4a49363
unicodeobject.c https://github.com/python/cpython/pull/31491/files#diff-34c966e7876d6f8bf801dd51896327e4f68bba02cddb95fbf3963f0b2e39c38a
_testembed.c https://github.com/python/cpython/pull/31491/files#diff-68b4b67b7265522a6f47393ef786b2034f5d6c53f1a9574780d72662c2361fad
import.c https://github.com/python/cpython/pull/31491/files#diff-28cfc3e2868980a79d93d2ebdc8747dcb9231f3dd7f2caef96e74107d1ea3bf3
pylifecycle.c https://github.com/python/cpython/pull/31491/files#diff-69223f5bb01f359a23246afbbf75b45c622e719424418d658674fbb6c2b36fad
sysmodule.c https://github.com/python/cpython/pull/31491/files#diff-a3a5c73931235f7f344c072dc755d6508e13923db3f5d581c5e88652075871cb
Include/boolobject.hhttps://github.com/python/cpython/pull/31491/files#diff-cb015dd8a8161c3ca18f71fc78aac892d865a2a096a13ffc03a9cda8b02970ae
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Include/boolobject.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-cb015dd8a8161c3ca18f71fc78aac892d865a2a096a13ffc03a9cda8b02970ae
https://github.com/python/cpython/pull/31491/files#diff-cb015dd8a8161c3ca18f71fc78aac892d865a2a096a13ffc03a9cda8b02970ae
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L243
Include/cpython/sysmodule.hhttps://github.com/python/cpython/pull/31491/files#diff-0c9f73735d4e3ab63721178da521a498c38581d4be8fb191fa7111c3c61bd430
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Include/cpython/sysmodule.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-0c9f73735d4e3ab63721178da521a498c38581d4be8fb191fa7111c3c61bd430
https://github.com/python/cpython/pull/31491/files#diff-0c9f73735d4e3ab63721178da521a498c38581d4be8fb191fa7111c3c61bd430
Include/internal/pycore_object.hhttps://github.com/python/cpython/pull/31491/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Include/internal/pycore_object.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
https://github.com/python/cpython/pull/31491/files#diff-2a12f738a77b362d74a65949b58c37f2affcd15ba8b1c979b63bd00223b8a456
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L266
Include/moduleobject.hhttps://github.com/python/cpython/pull/31491/files#diff-b922950b4d9070569144f21cce5616a05ef2b86415c05e965f10acfbe8652d9f
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Include/moduleobject.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-b922950b4d9070569144f21cce5616a05ef2b86415c05e965f10acfbe8652d9f
https://github.com/python/cpython/pull/31491/files#diff-b922950b4d9070569144f21cce5616a05ef2b86415c05e965f10acfbe8652d9f
https://github.com/python/cpython/pull/31491/files#diff-b922950b4d9070569144f21cce5616a05ef2b86415c05e965f10acfbe8652d9f
Include/object.hhttps://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Include/object.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
gvanrossumhttps://github.com/gvanrossum
Mar 1, 2022https://github.com/python/cpython/pull/31491/files#r817161526
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/python/cpython/pull/31491/files
https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
https://github.com/python/cpython/pull/31491/files#diff-87272721a5cf1cd9915d6f503f6a7bbefa2f26c935c7ce83ca78706afd0ad05a
Lib/concurrent/futures/process.pyhttps://github.com/python/cpython/pull/31491/files#diff-84a955ea642d41d9f164e9f94499d8eb33c357ec7f4362a341951f6f67ab21a1
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Lib/concurrent/futures/process.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-84a955ea642d41d9f164e9f94499d8eb33c357ec7f4362a341951f6f67ab21a1
https://github.com/python/cpython/pull/31491/files#diff-84a955ea642d41d9f164e9f94499d8eb33c357ec7f4362a341951f6f67ab21a1
https://github.com/python/cpython/pull/31491/files#diff-84a955ea642d41d9f164e9f94499d8eb33c357ec7f4362a341951f6f67ab21a1
Lib/ctypes/test/test_python_api.pyhttps://github.com/python/cpython/pull/31491/files#diff-da3283c514904d57cb053937cb058a3cb3fae31a6224dbceb8a7f1e7a0a1db7f
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Lib/ctypes/test/test_python_api.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-da3283c514904d57cb053937cb058a3cb3fae31a6224dbceb8a7f1e7a0a1db7f
https://github.com/python/cpython/pull/31491/files#diff-da3283c514904d57cb053937cb058a3cb3fae31a6224dbceb8a7f1e7a0a1db7f
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L514
Lib/logging/__init__.pyhttps://github.com/python/cpython/pull/31491/files#diff-1bf0ad6d121df3948853dafdd8e5406709fe0c3911b30e3cf2def41717455c98
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Lib/logging/__init__.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-1bf0ad6d121df3948853dafdd8e5406709fe0c3911b30e3cf2def41717455c98
https://github.com/python/cpython/pull/31491/files#diff-1bf0ad6d121df3948853dafdd8e5406709fe0c3911b30e3cf2def41717455c98
https://github.com/python/cpython/pull/31491/files#diff-1bf0ad6d121df3948853dafdd8e5406709fe0c3911b30e3cf2def41717455c98
https://github.com/python/cpython/pull/31491/files#diff-1bf0ad6d121df3948853dafdd8e5406709fe0c3911b30e3cf2def41717455c98
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L519
Lib/multiprocessing/managers.pyhttps://github.com/python/cpython/pull/31491/files#diff-9e59d8c837ebf181d34af715ac88bb8a4b6141ec18b703cef2c3c8136391abf7
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Lib/multiprocessing/managers.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-9e59d8c837ebf181d34af715ac88bb8a4b6141ec18b703cef2c3c8136391abf7
https://github.com/python/cpython/pull/31491/files#diff-9e59d8c837ebf181d34af715ac88bb8a4b6141ec18b703cef2c3c8136391abf7
Lib/tempfile.pyhttps://github.com/python/cpython/pull/31491/files#diff-6553a99f3ae04c9fc9c2349ac27037bfe3b274d5ca54d5800d9c5b5f11e29d21
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Lib/tempfile.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-6553a99f3ae04c9fc9c2349ac27037bfe3b274d5ca54d5800d9c5b5f11e29d21
https://github.com/python/cpython/pull/31491/files#diff-6553a99f3ae04c9fc9c2349ac27037bfe3b274d5ca54d5800d9c5b5f11e29d21
https://github.com/python/cpython/pull/31491/files#diff-6553a99f3ae04c9fc9c2349ac27037bfe3b274d5ca54d5800d9c5b5f11e29d21
Lib/test/final_a.pyhttps://github.com/python/cpython/pull/31491/files#diff-4335e7e18684135976e92204493974e2430282a4ff3e4bfa95280a5b57859fa1
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Lib/test/final_a.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-4335e7e18684135976e92204493974e2430282a4ff3e4bfa95280a5b57859fa1
Lib/test/final_b.pyhttps://github.com/python/cpython/pull/31491/files#diff-8d4cac4b09e9daff58c16b9ce6acb0aa6321bbf8f87a64818b5100c747e8119e
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Lib/test/final_b.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-8d4cac4b09e9daff58c16b9ce6acb0aa6321bbf8f87a64818b5100c747e8119e
Lib/test/test_builtin.pyhttps://github.com/python/cpython/pull/31491/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Lib/test/test_builtin.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
https://github.com/python/cpython/pull/31491/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
https://github.com/python/cpython/pull/31491/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
https://github.com/python/cpython/pull/31491/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
https://github.com/python/cpython/pull/31491/files#diff-f23235c1f5dea0e2d79b33a58e00025ad3c440f96bb76013a1a37868e70a776b
Lib/test/test_gc.pyhttps://github.com/python/cpython/pull/31491/files#diff-9d9e863bd2a456b669ec9600be793699e861340d91d7c417a8a5b5b8cfbd09a7
View file https://github.com/eduardo-elizondo/cpython/blob/a72b3cd6a05eb97538760fe76d3dbe3ac89f8a6f/Lib/test/test_gc.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/31491/{{ revealButtonHref }}
https://github.com/python/cpython/pull/31491/files#diff-9d9e863bd2a456b669ec9600be793699e861340d91d7c417a8a5b5b8cfbd09a7
https://github.com/python/cpython/pull/31491/files#diff-9d9e863bd2a456b669ec9600be793699e861340d91d7c417a8a5b5b8cfbd09a7
https://github.com/python/cpython/pull/31491/files#diff-9d9e863bd2a456b669ec9600be793699e861340d91d7c417a8a5b5b8cfbd09a7
Please reload this pagehttps://github.com/python/cpython/pull/31491/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.