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
Document func parameter of locale.atof #18183
Conversation
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept this contribution by verifying everyone involved has signed the PSF contributor agreement (CLA). Recognized GitHub usernameWe couldn't find a bugs.python.org (b.p.o) account corresponding to the following GitHub usernames: This might be simply due to a missing "GitHub Name" entry in one's b.p.o account settings. This is necessary for legal reasons before we can look at this contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. You can check yourself to see if the CLA has been received. Thanks again for the contribution, we look forward to reviewing it! |
The second parameter (named `func`) has been present since the `locale` module was introduced in eef1d4e, but has never been documented. This commit updates the documentation for `locale.atof` to clarify the behavior of the function and how the `func` parameter is used. Signed-off-by: Kevin Locke <kevin@kevinlocke.name>
Thanks @kevinoid for the PR, and @JelleZijlstra for merging it |
Sorry @kevinoid and @JelleZijlstra, I had trouble checking out the |
Sorry, @kevinoid and @JelleZijlstra, I could not cleanly backport this to |
Thanks @kevinoid for the PR, and @JelleZijlstra for merging it |
Sorry @kevinoid and @JelleZijlstra, I had trouble checking out the |
The second parameter (named `func`) has been present since the `locale` module was introduced in eef1d4e, but has never been documented. This commit updates the documentation for `locale.atof` to clarify the behavior of the function and how the `func` parameter is used. Signed-off-by: Kevin Locke <kevin@kevinlocke.name>. (cherry picked from commit 208da6d) Co-authored-by: Kevin Locke <kevin@kevinlocke.name>
GH-32261 is a backport of this pull request to the 3.9 branch. |
The second parameter (named `func`) has been present since the `locale` module was introduced in eef1d4e, but has never been documented. This commit updates the documentation for `locale.atof` to clarify the behavior of the function and how the `func` parameter is used. Signed-off-by: Kevin Locke <kevin@kevinlocke.name> (cherry picked from commit 208da6d) Co-authored-by: Kevin Locke <kevin@kevinlocke.name>
GH-32262 is a backport of this pull request to the 3.10 branch. |
The second parameter (named `func`) has been present since the `locale` module was introduced in eef1d4e, but has never been documented. This commit updates the documentation for `locale.atof` to clarify the behavior of the function and how the `func` parameter is used. Signed-off-by: Kevin Locke <kevin@kevinlocke.name> (cherry picked from commit 208da6d) Co-authored-by: Kevin Locke <kevin@kevinlocke.name>
The second parameter (named `func`) has been present since the `locale` module was introduced in eef1d4e, but has never been documented. This commit updates the documentation for `locale.atof` to clarify the behavior of the function and how the `func` parameter is used. Signed-off-by: Kevin Locke <kevin@kevinlocke.name>. (cherry picked from commit 208da6d) Co-authored-by: Kevin Locke <kevin@kevinlocke.name>
…GH-32261) The second parameter (named `func`) has been present since the `locale` module was introduced in eef1d4e, but has never been documented. This commit updates the documentation for `locale.atof` to clarify the behavior of the function and how the `func` parameter is used. Signed-off-by: Kevin Locke <kevin@kevinlocke.name>. (cherry picked from commit 208da6d) Co-authored-by: Kevin Locke <kevin@kevinlocke.name>
A second parameter (named
func
) was added tolocale.atof
in b64bca9, first released in v3.5.0, but was not documented.This PR updates the documentation for
locale.atof
to clarify thebehavior of the function and how thefunc
parameter is used.Thanks for considering,
Kevin