Skip to content

Fix typos in bltinmodule.c #97766

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 2 commits into from
Oct 3, 2022
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
Next Next commit
Fix typos in bltnsmodule.c
  • Loading branch information
sobolevn committed Oct 3, 2022
commit 622ea646a7e76d69e3aeb2f7e3bda2a1b3fbce6d
8 changes: 4 additions & 4 deletions Python/bltinmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ importlib.import_module() to programmatically import a module.

The globals argument is only used to determine the context;
they are not modified. The locals argument is unused. The fromlist
should be a list of names to emulate ``from name import ...'', or an
empty list to emulate ``import name''.
should be a list of names to emulate ``from name import ...``, or an
empty list to emulate ``import name``.
When importing a module from a package, note that __import__('A.B', ...)
returns package A when fromlist is empty, but its submodule B when
fromlist is not empty. The level argument is used to determine whether to
Expand Down Expand Up @@ -1510,7 +1510,7 @@ setattr as builtin_setattr

Sets the named attribute on the given object to the specified value.

setattr(x, 'y', v) is equivalent to ``x.y = v''
setattr(x, 'y', v) is equivalent to ``x.y = v``
[clinic start generated code]*/

static PyObject *
Expand All @@ -1533,7 +1533,7 @@ delattr as builtin_delattr

Deletes the named attribute from the given object.

delattr(x, 'y') is equivalent to ``del x.y''
delattr(x, 'y') is equivalent to ``del x.y``
[clinic start generated code]*/

static PyObject *
Expand Down