gh-100117: Fix inaccuracy in documentation of the CodeObject's co_positions field. (#119364)

This commit is contained in:
Irit Katriel 2024-05-31 18:09:48 +01:00 committed by GitHub
parent 078b8c8cf2
commit 015b1fdd0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1243,7 +1243,7 @@ Methods on code objects
The iterator returns :class:`tuple`\s containing the ``(start_line, end_line,
start_column, end_column)``. The *i-th* tuple corresponds to the
position of the source code that compiled to the *i-th* instruction.
position of the source code that compiled to the *i-th* code unit.
Column information is 0-indexed utf-8 byte offsets on the given source
line.