diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-06-09 16:00:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-09 16:00:42 (GMT) |
commit | 97d846dc2b6a790298cbfbb5669d180281cfda89 (patch) | |
tree | fb71f824bb3d84662fff06ad7874f83cadf86342 | |
parent | 7c298d2dc5fd2ccffff5a8f72646e50d5d3682f1 (diff) | |
download | cpython-97d846dc2b6a790298cbfbb5669d180281cfda89.zip cpython-97d846dc2b6a790298cbfbb5669d180281cfda89.tar.gz cpython-97d846dc2b6a790298cbfbb5669d180281cfda89.tar.bz2 |
[3.12] Clarify the supported cases in the tokenize module (GH-105569) (#105573)
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
-rw-r--r-- | Doc/library/tokenize.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/library/tokenize.rst b/Doc/library/tokenize.rst index 41222a7..bffe930 100644 --- a/Doc/library/tokenize.rst +++ b/Doc/library/tokenize.rst @@ -22,6 +22,15 @@ the generic :data:`~token.OP` token type. The exact type can be determined by checking the ``exact_type`` property on the :term:`named tuple` returned from :func:`tokenize.tokenize`. + +.. warning:: + + Note that the functions in this module are only designed to parse + syntactically valid Python code (code that does not raise when parsed + using :func:`ast.parse`). The behavior of the functions in this module is + **undefined** when providing invalid Python code and it can change at any + point. + Tokenizing Input ---------------- |