Staging
v0.5.1
https://github.com/python/cpython
Revision c01a7edc67e2c2e13a6d9513f111f27761786e27 authored by Karthikeyan Singaravelan on 28 August 2020, 15:06:31 UTC, committed by GitHub on 28 August 2020, 15:06:31 UTC
(cherry picked from commit 8c58d2a)

Co-authored-by: MingZhe Hu <humingzhework@163.com>

Co-authored-by: MingZhe Hu <humingzhework@163.com>
1 parent 7361451
Raw File
Tip revision: c01a7edc67e2c2e13a6d9513f111f27761786e27 authored by Karthikeyan Singaravelan on 28 August 2020, 15:06:31 UTC
[3.9] bpo-41624: fix documentation of typing.Coroutine (GH-21952) (#21982)
Tip revision: c01a7ed
language.rst
.. _language:

************************
Python Language Services
************************

Python provides a number of modules to assist in working with the Python
language.  These modules support tokenizing, parsing, syntax analysis, bytecode
disassembly, and various other facilities.

These modules include:


.. toctree::

   parser.rst
   ast.rst
   symtable.rst
   symbol.rst
   token.rst
   keyword.rst
   tokenize.rst
   tabnanny.rst
   pyclbr.rst
   py_compile.rst
   compileall.rst
   dis.rst
   pickletools.rst
back to top