bpo-42725: Render annotations effectless on symbol table with PEP 563 (GH-25583)

This commit is contained in:
Batuhan Taskaya 2021-05-03 10:43:00 +03:00 committed by GitHub
parent 37ebdf0a86
commit ad106c68eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 149 additions and 18 deletions

View file

@ -10,7 +10,7 @@ extern "C" {
struct _mod; // Type defined in pycore_ast.h
typedef enum _block_type { FunctionBlock, ClassBlock, ModuleBlock }
typedef enum _block_type { FunctionBlock, ClassBlock, ModuleBlock, AnnotationBlock }
_Py_block_ty;
struct _symtable_entry;