Skip to content

Commit 89cfae1

Browse files
zk-khanclaude
andcommitted
InternalDocs: fix inverted Markdown link syntax in code_objects.md
(text)[url] does not render as a link. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 3a8c937 commit 89cfae1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

InternalDocs/code_objects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Note that traceback objects don't store all this information -- they store the s
4848
number, for backward compatibility, and the "last instruction" value.
4949
The rest can be computed from the last instruction (`tb_lasti`) with the help of the
5050
locations table. For Python code, there is a convenience method
51-
(`codeobject.co_positions`)[https://docs.python.org/dev/reference/datamodel.html#codeobject.co_positions]
51+
[`codeobject.co_positions`](https://docs.python.org/dev/reference/datamodel.html#codeobject.co_positions)
5252
which returns an iterator of `({line}, {endline}, {column}, {endcolumn})` tuples,
5353
one per instruction.
5454
There is also `co_lines()` which returns an iterator of `({start}, {end}, {line})` tuples,

0 commit comments

Comments
 (0)