]> git.madduck.net Git - etc/vim.git/blob - blib2to3/pygram.pyi

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add support for pyi files (#210)
[etc/vim.git] / blib2to3 / pygram.pyi
1 # Stubs for lib2to3.pygram (Python 3.6)
2
3 from typing import Any
4 from blib2to3.pgen2.grammar import Grammar
5
6 class Symbols:
7     def __init__(self, grammar: Grammar) -> None: ...
8
9 class python_symbols(Symbols):
10     and_expr: int
11     and_test: int
12     annassign: int
13     arglist: int
14     argument: int
15     arith_expr: int
16     assert_stmt: int
17     async_funcdef: int
18     async_stmt: int
19     atom: int
20     augassign: int
21     break_stmt: int
22     classdef: int
23     comp_for: int
24     comp_if: int
25     comp_iter: int
26     comp_op: int
27     comparison: int
28     compound_stmt: int
29     continue_stmt: int
30     decorated: int
31     decorator: int
32     decorators: int
33     del_stmt: int
34     dictsetmaker: int
35     dotted_as_name: int
36     dotted_as_names: int
37     dotted_name: int
38     encoding_decl: int
39     eval_input: int
40     except_clause: int
41     exec_stmt: int
42     expr: int
43     expr_stmt: int
44     exprlist: int
45     factor: int
46     file_input: int
47     flow_stmt: int
48     for_stmt: int
49     funcdef: int
50     global_stmt: int
51     if_stmt: int
52     import_as_name: int
53     import_as_names: int
54     import_from: int
55     import_name: int
56     import_stmt: int
57     lambdef: int
58     listmaker: int
59     not_test: int
60     old_comp_for: int
61     old_comp_if: int
62     old_comp_iter: int
63     old_lambdef: int
64     old_test: int
65     or_test: int
66     parameters: int
67     pass_stmt: int
68     power: int
69     print_stmt: int
70     raise_stmt: int
71     return_stmt: int
72     shift_expr: int
73     simple_stmt: int
74     single_input: int
75     sliceop: int
76     small_stmt: int
77     star_expr: int
78     stmt: int
79     subscript: int
80     subscriptlist: int
81     suite: int
82     term: int
83     test: int
84     testlist: int
85     testlist1: int
86     testlist_gexp: int
87     testlist_safe: int
88     testlist_star_expr: int
89     tfpdef: int
90     tfplist: int
91     tname: int
92     trailer: int
93     try_stmt: int
94     typedargslist: int
95     varargslist: int
96     vfpdef: int
97     vfplist: int
98     vname: int
99     while_stmt: int
100     with_item: int
101     with_stmt: int
102     with_var: int
103     xor_expr: int
104     yield_arg: int
105     yield_expr: int
106     yield_stmt: int
107
108 class pattern_symbols(Symbols):
109     Alternative: int
110     Alternatives: int
111     Details: int
112     Matcher: int
113     NegatedUnit: int
114     Repeater: int
115     Unit: int
116
117 python_grammar: Grammar
118 python_grammar_no_print_statement: Grammar
119 python_grammar_no_print_statement_no_exec_statement: Grammar
120 python_grammar_no_exec_statement: Grammar
121 pattern_grammar: Grammar