8000 gh-103886: Improve `builtins.__doc__` by tomasr8 · Pull Request #104179 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-103886: Improve builtins.__doc__ #104179

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

Merged
merged 6 commits into from
May 7, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Python/bltinmodule.c
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
  • Loading branch information
tomasr8 and JelleZijlstra authored May 5, 2023
commit d31b718308f31e8696f2c2aa5e9aac9f62c49f4f
2 changes: 1 addition & 1 deletion Python/bltinmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3014,7 +3014,7 @@ static PyMethodDef builtin_methods[] = {
};

PyDoc_STRVAR(builtin_doc,
"Built-in functions, exceptions, and other objects.\n\
"Built-in functions, types, exceptions, and other objects.\n\
\n\
This module provides direct access to all 'built-in'\n\
identifiers of Python; for example, `builtins.open` is\n\
Expand Down
0