-
Notifications
You must be signed in to change notification settings - Fork 43
Updades description of the popen module #5117
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
base: latest
Are you sure you want to change the base?
Conversation
Got rid of repeated "ph" abbriviateion everywhere except for examples Removed "Index" heading Added Subheadings for constructors, fields, and constants Fixes #5104
Changed datatype for popen handle objects from ``handle`` to ``userdata`` in parameters Added "object" word to ``popen.shell`` and ``popen.new`` constructors' successful results Fixes #5117
Changed headings structures and levels by comments for consistency Fixes #5117
Table names changed for headings by comment Fixes #5117
@@ -30,7 +30,9 @@ object: | |||
syscall | |||
* :ref:`popen.new <popen-new>` to create a popen object with more specific options | |||
|
|||
Below is a list of all ``popen`` functions and handle methods. | |||
Below are tables with summaries of ``popen`` constructors, constants, mrthods, and fields. |
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.
Typo: mrthods.
Popen handle fields: | ||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
popen module fields | ||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
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.
These are handle fields, not module fields.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
popen module methods | ||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
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.
These are handle methods.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
popen module constructors | ||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
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.
Should we really place these ToC tables into sub-sections? It is rendered this way:
Maybe we can do it in the following way (add the 'summary' words)?
- Overview
- popen module constructors summary
- popen module constants summary
- popen handle methods summary
- popen handle fields summary
- popen module constructors
- popen module constants
- popen handle methods
- popen handle fields
It seems less confusing.
Fixes Update
popen_handle
term description #5104