diff options
author | Shantanu <12621235+hauntsaninja@users.noreply.github.com> | 2024-02-29 22:09:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-29 22:09:06 (GMT) |
commit | c04a981ff414b101736688773dbe24f824ca32ce (patch) | |
tree | f915bce0d5d0799933cbf736b30e07c41458d8cd | |
parent | fa1d675309c6a08b0833cf25cffe476c6166aba3 (diff) | |
download | cpython-c04a981ff414b101736688773dbe24f824ca32ce.zip cpython-c04a981ff414b101736688773dbe24f824ca32ce.tar.gz cpython-c04a981ff414b101736688773dbe24f824ca32ce.tar.bz2 |
Fix rendering of null character in ast.rst (#116080)
-rw-r--r-- | Doc/library/ast.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst index 5ed6eb6..d10f3f2 100644 --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -2193,7 +2193,7 @@ and classes for traversing abstract syntax trees: is no guarantee that the parse (or success of the parse) is the same as when run on the Python version corresponding to ``feature_version``. - If source contains a null character ('\0'), :exc:`ValueError` is raised. + If source contains a null character (``\0``), :exc:`ValueError` is raised. .. warning:: Note that successfully parsing source code into an AST object doesn't |