-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Feat: locale-module #4081
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
Feat: locale-module #4081
Conversation
Co-authored-by: Jeong YunWon <69878+youknowone@users.noreply.github.com>
stdlib/src/locale.rs
Outdated
|
||
#[pyfunction] | ||
fn localeconv(vm: &VirtualMachine) -> PyResult<PyStrRef> { | ||
let result = unsafe { libc::localeconv() }; |
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.
In the current Windows version of the libc
crate, this function and its return type are both missing.
I don't think this particular module belongs in the
I think it should belong in the |
@fanninpm Interesting. Does I usually check
Yes, so this belongs in |
Let's see:
The Python docs say that the
|
Thanks! I didn't know that. |
Thank you for contributing. This is not implemented by #4558 |
No description provided.