René's URL Explorer Experiment


Title: bpo-45636: `BINARY_OP` (third time's the charm) by brandtbucher · Pull Request #29482 · python/cpython · GitHub

Open Graph Title: bpo-45636: `BINARY_OP` (third time's the charm) by brandtbucher · Pull Request #29482 · python/cpython

X Title: bpo-45636: `BINARY_OP` (third time's the charm) by brandtbucher · Pull Request #29482 · python/cpython

Description: This merges all numeric BINARY_* and INPLACE_* instructions into one BINARY_OP instruction. As a consequence, the BINARY_ADD and BINARY_MULTIPLY specialization families are merged into a new BINARY_OP family too. I prefer this new approach over the more complicated one taken in #29418. It simplifies the specialization logic for all operators (for example, += and *= now get specialized the same as + and *, basically for free). Performance is unchanged vs main: Details Slower (28): - unpack_sequence: 43.7 ns +- 0.9 ns -> 46.8 ns +- 0.7 ns: 1.07x slower - regex_v8: 23.2 ms +- 0.1 ms -> 24.1 ms +- 0.3 ms: 1.04x slower - go: 165 ms +- 1 ms -> 171 ms +- 1 ms: 1.03x slower - chaos: 76.7 ms +- 0.7 ms -> 79.3 ms +- 1.0 ms: 1.03x slower - pickle_dict: 26.8 us +- 0.1 us -> 27.7 us +- 0.1 us: 1.03x slower - pidigits: 190 ms +- 0 ms -> 195 ms +- 0 ms: 1.03x slower - regex_dna: 212 ms +- 1 ms -> 217 ms +- 1 ms: 1.02x slower - spectral_norm: 107 ms +- 1 ms -> 109 ms +- 3 ms: 1.02x slower - regex_compile: 144 ms +- 2 ms -> 147 ms +- 1 ms: 1.02x slower - sympy_expand: 501 ms +- 5 ms -> 510 ms +- 6 ms: 1.02x slower - meteor_contest: 106 ms +- 2 ms -> 108 ms +- 3 ms: 1.02x slower - json_loads: 25.4 us +- 0.2 us -> 25.8 us +- 0.2 us: 1.02x slower - crypto_pyaes: 87.5 ms +- 0.6 ms -> 88.9 ms +- 0.5 ms: 1.02x slower - sqlalchemy_imperative: 18.6 ms +- 0.5 ms -> 18.8 ms +- 0.9 ms: 1.02x slower - telco: 6.38 ms +- 0.25 ms -> 6.47 ms +- 0.09 ms: 1.01x slower - scimark_monte_carlo: 77.5 ms +- 0.8 ms -> 78.6 ms +- 1.4 ms: 1.01x slower - richards: 56.9 ms +- 0.9 ms -> 57.5 ms +- 0.7 ms: 1.01x slower - sympy_str: 303 ms +- 4 ms -> 306 ms +- 4 ms: 1.01x slower - pyflate: 539 ms +- 9 ms -> 543 ms +- 5 ms: 1.01x slower - float: 80.5 ms +- 0.9 ms -> 81.1 ms +- 1.2 ms: 1.01x slower - sympy_integrate: 22.0 ms +- 0.2 ms -> 22.2 ms +- 0.2 ms: 1.01x slower - unpickle_pure_python: 272 us +- 3 us -> 274 us +- 5 us: 1.01x slower - scimark_sor: 154 ms +- 2 ms -> 155 ms +- 3 ms: 1.01x slower - pathlib: 19.0 ms +- 0.3 ms -> 19.1 ms +- 0.3 ms: 1.01x slower - raytrace: 331 ms +- 2 ms -> 333 ms +- 3 ms: 1.01x slower - xml_etree_process: 59.1 ms +- 0.6 ms -> 59.4 ms +- 0.7 ms: 1.01x slower - python_startup: 8.51 ms +- 0.01 ms -> 8.53 ms +- 0.01 ms: 1.00x slower - python_startup_no_site: 5.90 ms +- 0.00 ms -> 5.90 ms +- 0.00 ms: 1.00x slower Faster (17): - scimark_sparse_mat_mult: 4.84 ms +- 0.08 ms -> 4.51 ms +- 0.03 ms: 1.07x faster - unpickle: 13.9 us +- 1.3 us -> 13.3 us +- 0.2 us: 1.04x faster - fannkuch: 427 ms +- 4 ms -> 410 ms +- 4 ms: 1.04x faster - scimark_fft: 355 ms +- 10 ms -> 344 ms +- 5 ms: 1.03x faster - pickle_list: 4.48 us +- 0.04 us -> 4.39 us +- 0.04 us: 1.02x faster - pickle: 9.97 us +- 0.16 us -> 9.78 us +- 0.07 us: 1.02x faster - json_dumps: 12.6 ms +- 0.1 ms -> 12.4 ms +- 0.1 ms: 1.02x faster - pickle_pure_python: 367 us +- 3 us -> 363 us +- 4 us: 1.01x faster - nbody: 115 ms +- 2 ms -> 114 ms +- 3 ms: 1.01x faster - unpickle_list: 5.05 us +- 0.04 us -> 4.99 us +- 0.07 us: 1.01x faster - hexiom: 7.53 ms +- 0.12 ms -> 7.45 ms +- 0.06 ms: 1.01x faster - logging_silent: 116 ns +- 3 ns -> 115 ns +- 2 ns: 1.01x faster - mako: 11.9 ms +- 0.1 ms -> 11.8 ms +- 0.1 ms: 1.01x faster - nqueens: 90.1 ms +- 0.7 ms -> 89.3 ms +- 1.1 ms: 1.01x faster - dulwich_log: 67.6 ms +- 0.3 ms -> 67.2 ms +- 0.4 ms: 1.01x faster - logging_format: 6.73 us +- 0.09 us -> 6.69 us +- 0.08 us: 1.01x faster - django_template: 37.2 ms +- 0.5 ms -> 37.1 ms +- 0.4 ms: 1.00x faster Benchmark hidden because not significant (13): 2to3, chameleon, deltablue, logging_simple, regex_effbot, scimark_lu, sqlalchemy_declarative, sqlite_synth, sympy_sum, tornado_http, xml_etree_parse, xml_etree_iterparse, xml_etree_generate Geometric mean: 1.00x slower https://bugs.python.org/issue45636

Open Graph Description: This merges all numeric BINARY_* and INPLACE_* instructions into one BINARY_OP instruction. As a consequence, the BINARY_ADD and BINARY_MULTIPLY specialization families are merged into a new BINARY...

X Description: This merges all numeric BINARY_* and INPLACE_* instructions into one BINARY_OP instruction. As a consequence, the BINARY_ADD and BINARY_MULTIPLY specialization families are merged into a new BINARY...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:4a905554-c5f0-4a50-42c1-2f6261a5636b
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id89FC:3F4FF7:6145B5:7EAD15:696B4760
html-safe-nonce7818ce03e6cd91aa60e7cf18c2a59ea831d295862a68e28ab55be863aefca450
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4OUZDOjNGNEZGNzo2MTQ1QjU6N0VBRDE1OjY5NkI0NzYwIiwidmlzaXRvcl9pZCI6IjM3MTA1ODE4ODQxMjc0OTYwMzIiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac4f22254da63a0482d7c8ab79ea1da40a8d0710fb98785a1e7527058e2a09c651
hovercard-subject-tagpull_request:776095586
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/29482/files
twitter:imagehttps://avatars.githubusercontent.com/u/40968415?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/40968415?s=400&v=4
og:image:altThis merges all numeric BINARY_* and INPLACE_* instructions into one BINARY_OP instruction. As a consequence, the BINARY_ADD and BINARY_MULTIPLY specialization families are merged into a new BINARY...
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/29482/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F29482%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%2F29482%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/29482/files
Reloadhttps://github.com/python/cpython/pull/29482/files
Reloadhttps://github.com/python/cpython/pull/29482/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/29482/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/29482/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
brandtbucherhttps://github.com/brandtbucher
python:mainhttps://github.com/python/cpython/tree/main
brandtbucher:binary-op-unifiedhttps://github.com/brandtbucher/cpython/tree/binary-op-unified
Conversation 19 https://github.com/python/cpython/pull/29482
Commits 18 https://github.com/python/cpython/pull/29482/commits
Checks 0 https://github.com/python/cpython/pull/29482/checks
Files changed https://github.com/python/cpython/pull/29482/files
Please reload this pagehttps://github.com/python/cpython/pull/29482/files
bpo-45636: BINARY_OP (third time's the charm) https://github.com/python/cpython/pull/29482/files#top
Show all changes 18 commits https://github.com/python/cpython/pull/29482/files
4b7125f Merge BINARY_*/INPLACE_* into BINARY_OP/INPLACE_OP brandtbucher Oct 27, 2021 https://github.com/python/cpython/pull/29482/commits/4b7125f331c91c3da37fc0586d2a74ca618f4c83
3a87083 Clean things up a bit brandtbucher Oct 27, 2021 https://github.com/python/cpython/pull/29482/commits/3a870838f396f8d4b5b3a79e44ed1c4bd9f0ad76
a2df29a Improve the new _PyNumber_*Op implementations brandtbucher Oct 27, 2021 https://github.com/python/cpython/pull/29482/commits/a2df29ae881bb1acc0c9196ed29187644e02cad0
1b8934e Add docs brandtbucher Oct 27, 2021 https://github.com/python/cpython/pull/29482/commits/1b8934ebc3972d5ccbe8c034d6dca07402857057
3137973 blurb add brandtbucher Oct 27, 2021 https://github.com/python/cpython/pull/29482/commits/3137973801729fef3d118418c90caf65b29348e0
9905549 Fix API leak brandtbucher Oct 27, 2021 https://github.com/python/cpython/pull/29482/commits/99055496e84a44e7e2f3943c5306f023807f955f
f697036 Clean up the nb_info struct brandtbucher Oct 28, 2021 https://github.com/python/cpython/pull/29482/commits/f6970361d8cf80000a08e4e6c7d809bd439c8874
33f6e7c Clean up some comments brandtbucher Oct 28, 2021 https://github.com/python/cpython/pull/29482/commits/33f6e7c50a48b04810ed5bd57345652041dc102d
f9e388b Truly unify all binary ops brandtbucher Nov 5, 2021 https://github.com/python/cpython/pull/29482/commits/f9e388b33183ab358592f2a9982e6547756725c5
f5b1923 Fix BINARY_OP stats brandtbucher Nov 6, 2021 https://github.com/python/cpython/pull/29482/commits/f5b192360c12e351d9b5796f6d20115a11d87ccb
2a8072c Don't defer operators that can't be specialized brandtbucher Nov 6, 2021 https://github.com/python/cpython/pull/29482/commits/2a8072c745343e2d5ede326fd34a7b5b8c470ebe
6c6b78f Remove some old changes brandtbucher Nov 8, 2021 https://github.com/python/cpython/pull/29482/commits/6c6b78f5cc63e9ab587f60b36ae5a6172cf9a242
51c4b5f Clarify behavior for non-specializing operators brandtbucher Nov 8, 2021 https://github.com/python/cpython/pull/29482/commits/51c4b5f999b07ab1cd7c3267d8650d60ff642590
f0d2056 Clean up dis.py a bit brandtbucher Nov 8, 2021 https://github.com/python/cpython/pull/29482/commits/f0d2056d30e25b0c94c93ad9675bc389e93972e6
45e8502 Remove trailing whitespace brandtbucher Nov 9, 2021 https://github.com/python/cpython/pull/29482/commits/45e8502ca5393f2e2ba3e6af8e0834193abc8a78
8d23dad Apply feedback from code review brandtbucher Nov 10, 2021 https://github.com/python/cpython/pull/29482/commits/8d23dada412c9f0684e2a585bd6315bf5fee9f93
490b8da Merge branch 'binary-op-unified' of github.com:brandtbucher/cpython i… brandtbucher Nov 10, 2021 https://github.com/python/cpython/pull/29482/commits/490b8da11ba2825a9e427b31f9c40e36faa4ee51
bea2cff Fix a refleak during error handling brandtbucher Nov 10, 2021 https://github.com/python/cpython/pull/29482/commits/bea2cff70fd29adadbff9b7c5b841a8b6e8671dc
Clear filters https://github.com/python/cpython/pull/29482/files
Please reload this pagehttps://github.com/python/cpython/pull/29482/files
Please reload this pagehttps://github.com/python/cpython/pull/29482/files
dis.rst https://github.com/python/cpython/pull/29482/files#diff-eaa488fc50d23b30ca8b24ab19e9c91c1c941339847af993e908f006eec0653b
3.11.rst https://github.com/python/cpython/pull/29482/files#diff-78f24041d66ab8ed2ae1aee94bcd42396d27af833cb96a3c506294c6d6dce82d
pycore_code.h https://github.com/python/cpython/pull/29482/files#diff-97ea1759f82531a45fa685065ff86bc1077c3ab3d5f65220eea48b7730032bc8
opcode.h https://github.com/python/cpython/pull/29482/files#diff-1cd1f0bb26c3fbaa279f83ee2bfe1d9072da7af07407111c79039c66034c57ed
dis.py https://github.com/python/cpython/pull/29482/files#diff-96747735ee3c8aed3dd0f4c1b1ab0310eeb344577b14887cc9f6605892df47a8
_bootstrap_external.py https://github.com/python/cpython/pull/29482/files#diff-efefe383b3a81d16150c280db0b64eed7569254299418f64cc0d749f8e16f3a4
opcode.py https://github.com/python/cpython/pull/29482/files#diff-7681b13de881a13601ca56b73d052d032be48da4256df4f2f09e0474b0c1cbeb
test_compile.py https://github.com/python/cpython/pull/29482/files#diff-c69ceae0611c40012b4691e3536bf17efacdb5b51b8e155eec9a939108e42e43
test_dis.py https://github.com/python/cpython/pull/29482/files#diff-fd7b118a01a9695dfa16eea9381d3c7b0652e1b7b55f51ff052a1f620d175642
test_peepholer.py https://github.com/python/cpython/pull/29482/files#diff-bcf92ed219340e9e0c52401909828c2e9a821541660073e24d64dd996beaf842
2021-10-27-15-14-31.bpo-45636.K2X7QS.rst https://github.com/python/cpython/pull/29482/files#diff-b4d578e703013b331b42ee3c8794ec500f149d7f2cdc9a61458c19ca559e3b78
ceval.c https://github.com/python/cpython/pull/29482/files#diff-c22186367cbe20233e843261998dc027ae5f1f8c0d2e778abfa454ae74cc59de
compile.c https://github.com/python/cpython/pull/29482/files#diff-ebc983d9f91e5bcf73500e377ac65e85863c4f77fd5b6b6caf4fcdf7c0f0b057
opcode_targets.h https://github.com/python/cpython/pull/29482/files#diff-d3363a4083b77b9157d0bf07c2e87f3d3464a8b4360d5d23b07bbb23061f007a
specialize.c https://github.com/python/cpython/pull/29482/files#diff-22e653d878778ca28317261f7826545288d02fd9980cf485d0329f28a34993f2
generate_opcode_h.py https://github.com/python/cpython/pull/29482/files#diff-f2b596fb7fb42d227352f57250a838053040ad46014d62a910542a9f3faa3e25
Doc/library/dis.rsthttps://github.com/python/cpython/pull/29482/files#diff-eaa488fc50d23b30ca8b24ab19e9c91c1c941339847af993e908f006eec0653b
View file https://github.com/brandtbucher/cpython/blob/bea2cff70fd29adadbff9b7c5b841a8b6e8671dc/Doc/library/dis.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/29482/{{ revealButtonHref }}
https://github.com/python/cpython/pull/29482/files#diff-eaa488fc50d23b30ca8b24ab19e9c91c1c941339847af993e908f006eec0653b
https://github.com/python/cpython/pull/29482/files#diff-eaa488fc50d23b30ca8b24ab19e9c91c1c941339847af993e908f006eec0653b
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L114
Doc/whatsnew/3.11.rsthttps://github.com/python/cpython/pull/29482/files#diff-78f24041d66ab8ed2ae1aee94bcd42396d27af833cb96a3c506294c6d6dce82d
View file https://github.com/brandtbucher/cpython/blob/bea2cff70fd29adadbff9b7c5b841a8b6e8671dc/Doc/whatsnew/3.11.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/29482/{{ revealButtonHref }}
https://github.com/python/cpython/pull/29482/files#diff-78f24041d66ab8ed2ae1aee94bcd42396d27af833cb96a3c506294c6d6dce82d
https://github.com/python/cpython/pull/29482/files#diff-78f24041d66ab8ed2ae1aee94bcd42396d27af833cb96a3c506294c6d6dce82d
Include/internal/pycore_code.hhttps://github.com/python/cpython/pull/29482/files#diff-97ea1759f82531a45fa685065ff86bc1077c3ab3d5f65220eea48b7730032bc8
View file https://github.com/brandtbucher/cpython/blob/bea2cff70fd29adadbff9b7c5b841a8b6e8671dc/Include/internal/pycore_code.h
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/29482/{{ revealButtonHref }}
https://github.com/python/cpython/pull/29482/files#diff-97ea1759f82531a45fa685065ff86bc1077c3ab3d5f65220eea48b7730032bc8
https://github.com/python/cpython/pull/29482/files#diff-97ea1759f82531a45fa685065ff86bc1077c3ab3d5f65220eea48b7730032bc8
Please reload this pagehttps://github.com/python/cpython/pull/29482/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.