René's URL Explorer Experiment


Title: Apply titlecase mapping in str.title() for uppercase digraphs by changjoon-park · Pull Request #7748 · RustPython/RustPython · GitHub

Open Graph Title: Apply titlecase mapping in str.title() for uppercase digraphs by changjoon-park · Pull Request #7748 · RustPython/RustPython

X Title: Apply titlecase mapping in str.title() for uppercase digraphs by changjoon-park · Pull Request #7748 · RustPython/RustPython

Description: Background PyStr::title() (crates/vm/src/builtins/str.rs:1040) walks each codepoint and chooses one of three actions per word boundary: Lowercase character starting a new word → call to_titlecase() Uppercase / titlecase character starting a new word → push unchanged Cased character continuing a word → call to_lowercase() Branch 2 is the gap. For ASCII letters and most Unicode characters, to_titlecase(c) == c, so pushing unchanged happens to produce the right result. But Latin Extended-B contains digraph triplets (LATIN LETTERS DZ / DŽ / LJ / NJ) where the uppercase and titlecase forms are distinct codepoints: Codepoint Form U+01C4 'DŽ' uppercase DŽ U+01C5 'Dž' titlecase Dž U+01C6 'dž' lowercase dž U+01F1 'DZ' uppercase DZ U+01F2 'Dz' titlecase Dz U+01F3 'dz' lowercase dz For these, c.to_titlecase() returns a different character than c itself, and the Branch 2 fall-through silently produced the wrong output. Reproduction 'DZ'.title() # CPython: 'Dz' Pre-fix: 'DZ' 'DŽ'.title() # CPython: 'Dž' Pre-fix: 'DŽ' 12 cases probed against CPython 3.14.4 covering all 4 digraph families × 3 forms each (uppercase / titlecase / lowercase): Family upper.title() title.title() lower.title() DŽ (U+01C4-01C6) Dž ✓ Dž ✓ Dž ✓ LJ (U+01C7-01C9) Lj ✓ Lj ✓ Lj ✓ NJ (U+01CA-01CC) Nj ✓ Nj ✓ Nj ✓ DZ (U+01F1-01F3) Dz ✓ Dz ✓ Dz ✓ Fix } else if c.is_uppercase() || c.is_titlecase() { if previous_is_cased { title.extend(c.to_lowercase()); } else { title.extend(c.to_titlecase()); // was: title.push_char(c) } previous_is_cased = true; } The lowercase branch (line 1047) already uses c.to_titlecase() — Branch 2 is now symmetric. char::to_titlecase returns the same character when invoked on an ASCII letter or already-titlecase codepoint, so no existing case regresses. Verification CPython 3.14.4 byte-identical across: 12 single-codepoint digraph cases — all 4 families × 3 forms 8 mixed-string cases — digraphs at start, mid-word, as standalone word, consecutive digraphs, multi-word strings ('hello DZ world' → 'Hello Dz World') 14 sibling-method cases — upper, lower, swapcase, capitalize, casefold, istitle on digraphs unchanged New Rust unit cases added to str_title (crates/vm/src/builtins/str.rs:2664) covering U+01F1 → U+01F2 and U+01C4 → U+01C5. cargo test -p rustpython-vm str_title and str_istitle both pass. Regression sweep: test_str, test_codecs, test_format, test_pprint — 484 tests, 0 regressions. No expectedFailure markers in Lib/test/test_str.py are tied to this root cause; this PR has no test unmask. Issue scope note Issue #7527 listed five examples. Probing on current main shows four already pass: Issue example Status on current main 'Ᲊ'.istitle() == False Stale: CPython 3.14.4 itself returns True for this codepoint 'DZ'.title() == 'Dz' Still failing — fixed by this PR '١'.isdigit() == True Already passes 'ౝ'.isidentifier() == True Already passes '㐅'.isnumeric() == True Already passes This PR closes the only remaining actionable case. The Ᲊ.istitle() expected value in the issue body appears to predate a Unicode database update in CPython 3.14 — current CPython behavior matches RustPython. Closes #7527 Summary by CodeRabbit Bug Fixes Corrected title-casing for Unicode characters whose titlecase mapping expands to multiple characters (including Latin Extended‑B digraphs), so title() now produces proper multi-character expansions and consistent title-case output across scripts.

Open Graph Description: Background PyStr::title() (crates/vm/src/builtins/str.rs:1040) walks each codepoint and chooses one of three actions per word boundary: Lowercase character starting a new word → call to_titlecase(...

X Description: Background PyStr::title() (crates/vm/src/builtins/str.rs:1040) walks each codepoint and chooses one of three actions per word boundary: Lowercase character starting a new word → call to_titlecase(...

Opengraph URL: https://github.com/RustPython/RustPython/pull/7748

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:fadb5264-43c4-80ae-2243-9b68e826eb1e
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idA7FC:39AD58:33871F0:47DE1AD:6A60DA38
html-safe-nonced83d107a3046d4a71e7b958be60718a86e15d0255fc471cd429ee1c6a742779d
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBN0ZDOjM5QUQ1ODozMzg3MUYwOjQ3REUxQUQ6NkE2MERBMzgiLCJ2aXNpdG9yX2lkIjoiNDM0MTc4MTQxOTEwODkxNTc2OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac649b72d7659a6813a1b25aa701edce6073eabbc32312881a3ed3eadda26f8c65
hovercard-subject-tagpull_request:3613117978
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/RustPython/RustPython/pull/7748/files
twitter:imagehttps://avatars.githubusercontent.com/u/131537123?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/131537123?s=400&v=4
og:image:altBackground PyStr::title() (crates/vm/src/builtins/str.rs:1040) walks each codepoint and chooses one of three actions per word boundary: Lowercase character starting a new word → call to_titlecase(...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None8302bdfafed4cf34ac9c1d3593108fafa53bc3f86b893907e38fa6bdd74361ac
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/RustPython/RustPython git https://github.com/RustPython/RustPython.git
octolytics-dimension-user_id39710557
octolytics-dimension-user_loginRustPython
octolytics-dimension-repository_id135201145
octolytics-dimension-repository_nwoRustPython/RustPython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id135201145
octolytics-dimension-repository_network_root_nwoRustPython/RustPython
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
releasec3c2ff0c76b34772c83c9498a08cefee28f53da0
ui-targetcanary-1
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/RustPython/RustPython/pull/7748/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FRustPython%2FRustPython%2Fpull%2F7748%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
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
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
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
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
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/enterprise/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%2FRustPython%2FRustPython%2Fpull%2F7748%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=RustPython%2FRustPython
Reloadhttps://github.com/RustPython/RustPython/pull/7748/files
Reloadhttps://github.com/RustPython/RustPython/pull/7748/files
Reloadhttps://github.com/RustPython/RustPython/pull/7748/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/7748/files
RustPython https://github.com/RustPython
RustPythonhttps://github.com/RustPython/RustPython
Notifications https://github.com/login?return_to=%2FRustPython%2FRustPython
Fork 1.5k https://github.com/login?return_to=%2FRustPython%2FRustPython
Star 22.2k https://github.com/login?return_to=%2FRustPython%2FRustPython
Code https://github.com/RustPython/RustPython
Issues 293 https://github.com/RustPython/RustPython/issues
Pull requests 102 https://github.com/RustPython/RustPython/pulls
Discussions https://github.com/RustPython/RustPython/discussions
Actions https://github.com/RustPython/RustPython/actions
Projects https://github.com/RustPython/RustPython/projects
Models https://github.com/RustPython/RustPython/models
Wiki https://github.com/RustPython/RustPython/wiki
Security and quality 0 https://github.com/RustPython/RustPython/security
Insights https://github.com/RustPython/RustPython/pulse
Code https://github.com/RustPython/RustPython
Issues https://github.com/RustPython/RustPython/issues
Pull requests https://github.com/RustPython/RustPython/pulls
Discussions https://github.com/RustPython/RustPython/discussions
Actions https://github.com/RustPython/RustPython/actions
Projects https://github.com/RustPython/RustPython/projects
Models https://github.com/RustPython/RustPython/models
Wiki https://github.com/RustPython/RustPython/wiki
Security and quality https://github.com/RustPython/RustPython/security
Insights https://github.com/RustPython/RustPython/pulse
Sign up for GitHub https://github.com/signup?return_to=%2FRustPython%2FRustPython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2FRustPython%2FRustPython%2Fissues%2Fnew%2Fchoose
youknowonehttps://github.com/youknowone
RustPython:mainhttps://github.com/RustPython/RustPython/tree/main
changjoon-park:fix-str-title-digraphhttps://github.com/changjoon-park/RustPython/tree/fix-str-title-digraph
Conversation 5 https://github.com/RustPython/RustPython/pull/7748
Commits 1 https://github.com/RustPython/RustPython/pull/7748/commits
Checks 20 https://github.com/RustPython/RustPython/pull/7748/checks
Files changed https://github.com/RustPython/RustPython/pull/7748/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/7748/files
Apply titlecase mapping in str.title() for uppercase digraphs https://github.com/RustPython/RustPython/pull/7748/files#top
Show all changes 1 commit https://github.com/RustPython/RustPython/pull/7748/files
fb49477 Apply titlecase mapping in str.title() for uppercase digraphs changjoon-park May 1, 2026 https://github.com/RustPython/RustPython/pull/7748/commits/fb4947786821a7587f3a3255b691e47dc3f04455
Clear filters https://github.com/RustPython/RustPython/pull/7748/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/7748/files
Please reload this pagehttps://github.com/RustPython/RustPython/pull/7748/files
test_unicodedata.py https://github.com/RustPython/RustPython/pull/7748/files#diff-c31ff7b8fca97de6b4fdaca3e14da27ab3cac411653e9c510a5378b189f909ea
str.rs https://github.com/RustPython/RustPython/pull/7748/files#diff-a04ea1f7734fe40189e756196e034e6dedfcd5c82f2925e58cfd51ba7432073a
Lib/test/test_unicodedata.pyhttps://github.com/RustPython/RustPython/pull/7748/files#diff-c31ff7b8fca97de6b4fdaca3e14da27ab3cac411653e9c510a5378b189f909ea
View file https://github.com/changjoon-park/RustPython/blob/fb4947786821a7587f3a3255b691e47dc3f04455/Lib/test/test_unicodedata.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/7748/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/7748/files#diff-c31ff7b8fca97de6b4fdaca3e14da27ab3cac411653e9c510a5378b189f909ea
https://github.com/RustPython/RustPython/pull/7748/files#diff-c31ff7b8fca97de6b4fdaca3e14da27ab3cac411653e9c510a5378b189f909ea
crates/vm/src/builtins/str.rshttps://github.com/RustPython/RustPython/pull/7748/files#diff-a04ea1f7734fe40189e756196e034e6dedfcd5c82f2925e58cfd51ba7432073a
View file https://github.com/changjoon-park/RustPython/blob/fb4947786821a7587f3a3255b691e47dc3f04455/crates/vm/src/builtins/str.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/RustPython/RustPython/pull/7748/{{ revealButtonHref }}
https://github.com/RustPython/RustPython/pull/7748/files#diff-a04ea1f7734fe40189e756196e034e6dedfcd5c82f2925e58cfd51ba7432073a
https://github.com/RustPython/RustPython/pull/7748/files#diff-a04ea1f7734fe40189e756196e034e6dedfcd5c82f2925e58cfd51ba7432073a
https://github.com/RustPython/RustPython/pull/7748/files#diff-a04ea1f7734fe40189e756196e034e6dedfcd5c82f2925e58cfd51ba7432073a
https://github.com/RustPython/RustPython/pull/7748/files#diff-a04ea1f7734fe40189e756196e034e6dedfcd5c82f2925e58cfd51ba7432073a
Please reload this pagehttps://github.com/RustPython/RustPython/pull/7748/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.