-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Update locale.py
from 3.13.6 and made _locale
available on android
#6091
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (1)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including You can disable this status message by setting the WalkthroughRelaxed cfg gates to enable the locale module and its initialization on Android (still excluded on iOS and wasm32). In locale.rs, LC_MESSAGES was moved out of the bulk libc import and re-exported under a narrower cfg (unix, not ios/redox), changing its platform exposure. Changes
Sequence Diagram(s)sequenceDiagram
participant Runtime
participant ModuleInit as get_module_inits
participant Locale as locale (cfg-gated)
Runtime->>ModuleInit: Build module init list
alt not(iOS) and not(wasm32)
ModuleInit->>Locale: Include locale init (Android now included)
else
ModuleInit--xLocale: Exclude locale init
end
Runtime->>Runtime: Initialize enabled modules
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Poem
✨ Finishing Touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
Status, Documentation and Community
|
e7e5bc0
to
d0f8798
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Summary by CodeRabbit