René's URL Explorer Experiment


Title: gh-144015: Add portable SIMD optimization for bytes.hex() by gpshead · Pull Request #143991 · python/cpython · GitHub

Open Graph Title: gh-144015: Add portable SIMD optimization for bytes.hex() by gpshead · Pull Request #143991 · python/cpython

X Title: gh-144015: Add portable SIMD optimization for bytes.hex() by gpshead · Pull Request #143991 · python/cpython

Description: Add SIMD optimization for bytes.hex(), bytearray.hex(), and binascii.hexlify() as well as hashlib .hexdigest() methods using portable GCC/Clang vector extensions that compile to native SIMD instructions. Up to 11x faster for large data (1KB+) 1.1-3x faster for common small data (16-64 bytes, covering md5 through sha512 digest sizes) Separator insertion (sep=) also benefits when bytes_per_sep >= 8 Retains the existing scalar code for short inputs (<16 bytes) or platforms lacking SIMD instructions, no observable performance regressions there. Supported platforms: x86-64: SSE2 is always available, no special flags needed ARM64: NEON is always available, no special flags needed ARM32: Requires NEON support and appropriate compiler flags (e.g., -march=native on a Raspberry Pi 3+) Windows/MSVC: Not supported; MSVC lacks __builtin_shufflevector, so the scalar path is used This is compile time detection of features that are always available on the target architectures. No need for runtime feature inspection. Benchmarked using https://github.com/python/cpython/blob/0f94c061d49821a74096e57df8dff9617b80fad7/Tools/scripts/pystrhex_benchmark.py Performance wins confirmed across the board on x86_64 (zen2), ARM64 (RPi4), ARM32 (RPi5 running 32-bit raspbian, with compiler flags to enable it), ARM64 Apple M4. The commit history on this branch contains earlier experiments for reference. Issue: gh-144015 Example benchmark results (M4): bytes.hex() without separator: Scales extremely well - 1.02x at 16 bytes up to 9.8x at 4KB. bytes.hex() with sep=32: Good gains even with separators (1.38x-5x). hashlib hexdigest: Modest 7-15% improvement on the hex conversion portion. The hash computation dominates total time Expand to see the table: bytes.hex() (no separator) ┌────────────┬───────────┬───────────┬─────────┐ │ Size │ Baseline │ Optimized │ Speedup │ ├────────────┼───────────┼───────────┼─────────┤ │ 16 bytes │ 22.9 ns │ 22.4 ns │ 1.02x │ ├────────────┼───────────┼───────────┼─────────┤ │ 32 bytes │ 28.4 ns │ 22.7 ns │ 1.25x │ ├────────────┼───────────┼───────────┼─────────┤ │ 64 bytes │ 44.4 ns │ 24.4 ns │ 1.82x │ ├────────────┼───────────┼───────────┼─────────┤ │ 256 bytes │ 154.9 ns │ 47.6 ns │ 3.25x │ ├────────────┼───────────┼───────────┼─────────┤ │ 4096 bytes │ 1969.2 ns │ 201.6 ns │ 9.8x │ └────────────┴───────────┴───────────┴─────────┘ bytes.hex('\n', 32) (separator every 32 bytes) ┌────────────┬───────────┬───────────┬─────────┐ │ Size │ Baseline │ Optimized │ Speedup │ ├────────────┼───────────┼───────────┼─────────┤ │ 32 bytes │ 48.8 ns │ 35.3 ns │ 1.38x │ ├────────────┼───────────┼───────────┼─────────┤ │ 64 bytes │ 63.4 ns │ 38.8 ns │ 1.63x │ ├────────────┼───────────┼───────────┼─────────┤ │ 256 bytes │ 178.7 ns │ 73.0 ns │ 2.45x │ ├────────────┼───────────┼───────────┼─────────┤ │ 512 bytes │ 293.3 ns │ 89.6 ns │ 3.27x │ ├────────────┼───────────┼───────────┼─────────┤ │ 4096 bytes │ 2074.2 ns │ 415.5 ns │ 5.0x │ └────────────┴───────────┴───────────┴─────────┘ hashlib hexdigest (hash + hex conversion) ┌───────────────────┬──────────┬───────────┬─────────┐ │ Digest │ Baseline │ Optimized │ Speedup │ ├───────────────────┼──────────┼───────────┼─────────┤ │ md5 (16 bytes) │ 238.2 ns │ 231.7 ns │ 1.03x │ ├───────────────────┼──────────┼───────────┼─────────┤ │ sha1 (20 bytes) │ 210.8 ns │ 197.3 ns │ 1.07x │ ├───────────────────┼──────────┼───────────┼─────────┤ │ sha256 (32 bytes) │ 214.6 ns │ 200.0 ns │ 1.07x │ ├───────────────────┼──────────┼───────────┼─────────┤ │ sha512 (64 bytes) │ 282.9 ns │ 255.9 ns │ 1.11x │ └───────────────────┴──────────┴───────────┴─────────┘ and if you're curious about the path not taken by the end state of this PR using AVX, here that is on a zen4: bytes.hex() without separator ┌────────┬───────────┬─────────────────┬──────────────────┬──────────────────┐ │ Size │ Baseline │ SIMD PR │ AVX-512 │ AVX2 │ ├────────┼───────────┼─────────────────┼──────────────────┼──────────────────┤ │ 32 B │ 44.7 ns │ 27.4 ns (1.6x) │ 29.2 ns (1.5x) │ 29.0 ns (1.5x) │ ├────────┼───────────┼─────────────────┼──────────────────┼──────────────────┤ │ 64 B │ 64.5 ns │ 28.3 ns (2.3x) │ 29.2 ns (2.2x) │ 29.4 ns (2.2x) │ ├────────┼───────────┼─────────────────┼──────────────────┼──────────────────┤ │ 128 B │ 104.8 ns │ 31.7 ns (3.3x) │ 29.0 ns (3.6x) │ 30.8 ns (3.4x) │ ├────────┼───────────┼─────────────────┼──────────────────┼──────────────────┤ │ 256 B │ 185.8 ns │ 45.0 ns (4.1x) │ 35.9 ns (5.2x) │ 40.4 ns (4.6x) │ ├────────┼───────────┼─────────────────┼──────────────────┼──────────────────┤ │ 512 B │ 361.1 ns │ 75.3 ns (4.8x) │ 55.0 ns (6.6x) │ 61.4 ns (5.9x) │ ├────────┼───────────┼─────────────────┼──────────────────┼──────────────────┤ │ 4096 B │ 2242.6 ns │ 278.1 ns (8.1x) │ 138.5 ns (16.2x) │ 174.0 ns (12.9x) │ └────────┴───────────┴─────────────────┴──────────────────┴──────────────────┘ The SIMD PR (SSE2/SSSE3) delivers strong speedups across the board, reaching 8x at 4KB. The AVX variants push further - AVX-512 hits 16x at 4KB, AVX2 achieves 13x.

Open Graph Description: Add SIMD optimization for bytes.hex(), bytearray.hex(), and binascii.hexlify() as well as hashlib .hexdigest() methods using portable GCC/Clang vector extensions that compile to native SIMD instruc...

X Description: Add SIMD optimization for bytes.hex(), bytearray.hex(), and binascii.hexlify() as well as hashlib .hexdigest() methods using portable GCC/Clang vector extensions that compile to native SIMD instruc...

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

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:69d67f5f-8461-10ae-bab9-c0eb33cf3b45
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC66E:3D71D3:1AFBD:232A2:696E4712
html-safe-nonce56e748601fef405a1ccb2a36a42201a21ed75f546255335017a665def15809da
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDNjZFOjNENzFEMzoxQUZCRDoyMzJBMjo2OTZFNDcxMiIsInZpc2l0b3JfaWQiOiIyMjA2NTg1ODUxNjU1MTQ1MTQiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac5c57280ab6c09898486db27be94b2b80a021dd41de0a2a33ef3c55c42b6b3332
hovercard-subject-tagpull_request:3185138582
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/143991/files
twitter:imagehttps://avatars.githubusercontent.com/u/68491?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/68491?s=400&v=4
og:image:altAdd SIMD optimization for bytes.hex(), bytearray.hex(), and binascii.hexlify() as well as hashlib .hexdigest() methods using portable GCC/Clang vector extensions that compile to native SIMD instruc...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None3d96554e55b469c47dbcd31f74dc86278872b170531e84c6ce7f3389673e01d1
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
releaseef576694863a4c791d0a5cc9d2b84384d4414bcd
ui-targetcanary-2
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F143991%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://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F143991%2Ffiles
Sign up https://patch-diff.githubusercontent.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://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
Reloadhttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
Reloadhttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
python https://patch-diff.githubusercontent.com/python
cpythonhttps://patch-diff.githubusercontent.com/python/cpython
Please reload this pagehttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fpython%2Fcpython
Fork 33.9k https://patch-diff.githubusercontent.com/login?return_to=%2Fpython%2Fcpython
Star 71.1k https://patch-diff.githubusercontent.com/login?return_to=%2Fpython%2Fcpython
Code https://patch-diff.githubusercontent.com/python/cpython
Issues 5k+ https://patch-diff.githubusercontent.com/python/cpython/issues
Pull requests 2.1k https://patch-diff.githubusercontent.com/python/cpython/pulls
Actions https://patch-diff.githubusercontent.com/python/cpython/actions
Projects 31 https://patch-diff.githubusercontent.com/python/cpython/projects
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/python/cpython/security
Please reload this pagehttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
Insights https://patch-diff.githubusercontent.com/python/cpython/pulse
Code https://patch-diff.githubusercontent.com/python/cpython
Issues https://patch-diff.githubusercontent.com/python/cpython/issues
Pull requests https://patch-diff.githubusercontent.com/python/cpython/pulls
Actions https://patch-diff.githubusercontent.com/python/cpython/actions
Projects https://patch-diff.githubusercontent.com/python/cpython/projects
Security https://patch-diff.githubusercontent.com/python/cpython/security
Insights https://patch-diff.githubusercontent.com/python/cpython/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
gpsheadhttps://patch-diff.githubusercontent.com/gpshead
python:mainhttps://patch-diff.githubusercontent.com/python/cpython/tree/main
gpshead:opt-pystrhexhttps://patch-diff.githubusercontent.com/gpshead/cpython/tree/opt-pystrhex
Conversation 4 https://patch-diff.githubusercontent.com/python/cpython/pull/143991
Commits 16 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits
Checks 47 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/checks
Files changed 2 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
gh-144015: Add portable SIMD optimization for bytes.hex() https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#top
Show all changes 16 commits https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
bbb4a8a pystrhex: Add AVX2 SIMD optimization for hex conversion gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/bbb4a8a0a1570b57c10519bc71be016a5cdc8580
90da084 pystrhex: Add AVX-512 SIMD optimization for hex conversion gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/90da084452868421540710639c10f32dff068dec
bdceb9c pystrhex: Add ARM NEON SIMD optimization for hex conversion gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/bdceb9c6b3f7a674583908dcf78291e38f171a72
4f3d60d pystrhex: Add SSE2 SIMD optimization for hex conversion gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/4f3d60dbd94870dda2ed09aaff90fcda7621189f
015cc55 pystrhex: Remove AVX2/AVX-512, keep SSE2-only for simplicity gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/015cc55fc6ddcae0345a242255040672ee4c4004
ae3d7be pystrhex: Replace SSE2/NEON with portable SIMD using GCC vector exten… gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/ae3d7be06f802b1dff64cbdddf58380f0c6ed11d
a22e5ce pystrhex: Add SIMD optimization for large separator groups gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/a22e5ce6fde77721a0e1c80558cf05348ed5b3b6
2fe987c measure more gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/2fe987cc8adafdc6209cf5323cc7aba8a4bb32ce
e643fb8 pystrhex: Lower SIMD separator threshold to 8 bytes gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/e643fb8b297f559cca3816fb10bebdd3e18287d6
92c281d pystrhex: Use signed comparison for efficient SIMD codegen gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/92c281da41598b21157485fdbef88df7cd251d9f
190936f pystrhex: Factor out scalar hexlify into shared inline function gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/190936f44e855f74f819b238de188b40c7e0fec6
b2dd34e remove benchmark data gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/b2dd34efbb0b015b9432274c8d6d28d1e880bda6
b6feaba pystrhex: Enable SIMD on 32-bit ARM with NEON gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/b6feaba12002934b2a144bb5e804666dd8017e4b
0f94c06 explain more in the comments gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/0f94c061d49821a74096e57df8dff9617b80fad7
e8650f3 remove the microbenchmark code gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/e8650f3f0ba2ba3df01304a2603d6d55a96adc54
5fc294c test_bytes: Add SIMD-specific test cases for bytes.hex() gpshead Jan 18, 2026 https://patch-diff.githubusercontent.com/python/cpython/pull/143991/commits/5fc294c7052cf2a239e3846a9e7e1ade17bd95ab
Clear filters https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
Please reload this pagehttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
Please reload this pagehttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
test_bytes.py https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-58df2535f64e3dcfb0677a7f543924d976fd982b595f8e34902a73f3deae40eb
pystrhex.c https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-af47231ac9399b1a2d9f947acc7d70267247dcd182c43dfc1c8a60832c5e64f1
Lib/test/test_bytes.pyhttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-58df2535f64e3dcfb0677a7f543924d976fd982b595f8e34902a73f3deae40eb
View file https://patch-diff.githubusercontent.com/python/cpython/blob/5fc294c7052cf2a239e3846a9e7e1ade17bd95ab/Lib/test/test_bytes.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/python/cpython/pull/143991/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-58df2535f64e3dcfb0677a7f543924d976fd982b595f8e34902a73f3deae40eb
https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-58df2535f64e3dcfb0677a7f543924d976fd982b595f8e34902a73f3deae40eb
Python/pystrhex.chttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-af47231ac9399b1a2d9f947acc7d70267247dcd182c43dfc1c8a60832c5e64f1
View file https://patch-diff.githubusercontent.com/python/cpython/blob/5fc294c7052cf2a239e3846a9e7e1ade17bd95ab/Python/pystrhex.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/python/cpython/pull/143991/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-af47231ac9399b1a2d9f947acc7d70267247dcd182c43dfc1c8a60832c5e64f1
serhiy-storchakahttps://patch-diff.githubusercontent.com/serhiy-storchaka
Jan 19, 2026https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#r2704604015
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/files
https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-af47231ac9399b1a2d9f947acc7d70267247dcd182c43dfc1c8a60832c5e64f1
https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-af47231ac9399b1a2d9f947acc7d70267247dcd182c43dfc1c8a60832c5e64f1
https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-af47231ac9399b1a2d9f947acc7d70267247dcd182c43dfc1c8a60832c5e64f1
https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-af47231ac9399b1a2d9f947acc7d70267247dcd182c43dfc1c8a60832c5e64f1
https://patch-diff.githubusercontent.com/python/cpython/pull/143991/files#diff-af47231ac9399b1a2d9f947acc7d70267247dcd182c43dfc1c8a60832c5e64f1
Please reload this pagehttps://patch-diff.githubusercontent.com/python/cpython/pull/143991/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.