-
Notifications
You must be signed in to change notification settings - Fork 10.5k
docs: convert Backtracing.rst
to Markdown
#64628
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: main
Are you sure you want to change the base?
Conversation
22c68a8
to
50c7eb8
Compare
Resolves partially #49997.
50c7eb8
to
fbbb560
Compare
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.
Sorry for the delay.
frames at the bottom of the stack where the actual fault occurred. | ||
|
||
1. There are `limit` or fewer frames. In this case we will display all | ||
the frames in the backtrace. Note that this \_[includes]() the case |
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.
I think "includes" was meant to be in italic here.
1. There are `limit` or fewer frames. In this case we will display all | ||
the frames in the backtrace. Note that this \_[includes]() the case | ||
where there are exactly `limit` frames. | ||
2. There are more than `limit` frames. | ||
1. `top` is `0`. We will display the first `limit - 1` frames | ||
followed by `...` to indicate that more frames exist. | ||
2. `top` is less than `limit - 1`. We will display | ||
`limit - 1 - top` frames from the bottom of the stack, then a | ||
`...`, then `top` frames from the top of the stack. | ||
3. `top` is greater or equal to `limit - 1`. We will display `...`, | ||
followed by `limit - 1` frames from the top of the stack. |
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.
How about changing all these bullet introducers to 1.
and letting the renderer take care of enumerating them instead?
should contain a `,`-separated list of `key=value` pairs. Supported keys | ||
are as follows: | ||
|
||
| Key | Default | Meaning | |
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.
Would it hurt the rendered result if we shrink the tables horizontally as in the old file to ease reading the raw text?
No problem at all, I still would like to get document author's approval first 🙂 |
The rendered Markdown document looks identical to the original
.rst
document, except:Resolves partially #49997.