mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-30 07:15:48 +00:00
fix #124714 str.to_lowercase sigma handling Hello, This PR fixes issue #124714 about 'Σ' handling in `str.to_lowercase()`. The fix consists in considering the full original string during 'Σ' handling instead of considering just the substring left after the optimized ascii handling. A new test is added to avoid regression. Thanks!