8000 gh-107091: Fix some uses of :attr: role by serhiy-storchaka · Pull Request #107318 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content
8000

gh-107091: Fix some uses of :attr: role #107318

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 5 commits into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
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
Apply suggestions from code review
Co-authored-by: Victor Stinner <vstinner@python.org>
  • Loading branch information
serhiy-storchaka and vstinner authored Jul 27, 2023
commit bad21984d5661e1efe35ea3904dada843fdec257
4 changes: 2 additions & 2 deletions Doc/c-api/import.rst
Original file line number Diff line number Diff line change
Expand Up @@ -318,11 +318,11 @@ Importing Modules

.. c:member:: const char *name

the module name, as an ASCII encoded string
The module name, as an ASCII encoded string.

.. c: member:: PyObject* (*initfunc)(void)

initialization function for a module built into the interpreter
Initialization function for a module built into the interpreter.


.. c:function:: int PyImport_ExtendInittab(struct _inittab *newtab)
Expand Down
2 changes: 1 addition & 1 deletion Doc/c-api/init.rst
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ code, or when embedding the Python interpreter:

.. c:member:: PyInterpreterState *interp

this thread's interpreter state
This thread's interpreter state.


.. c:function:: PyThreadState* PyEval_SaveThread()
Expand Down
0